-1

Here is a line-chart example https://swimlane.github.io/ngx-charts/#/ngx-charts/line-chart.

If you hover on that you'll see a tooltip:

enter image description here

As you can see the values on tooltip is not sorted. Is there anyway to make the tooltip values sorted at all?

Sergino
  • 10,128
  • 30
  • 98
  • 159

1 Answers1

0

Yes, there is.

You can sort the data like:

this.data.sort(function (a, b) {
  return a.name < b.name ? -1 : a.name > b.name ? 1 : 0;
});

Stackblitz example

Shinjo
  • 677
  • 6
  • 22