Hello,
I am working with Highcharts to plot some time series data.
Some of my charts have a few thousand data points and I know that Highcharts automatically groups data points to optimize for readability and performance.
However, is there a way to force Highcharts to not group the last data point?
I want to allow Highcharts to group data points as it normally does, but disable it for only the last data point in a series so that when a user hovers over the chart, the tooltip that pops over the last point in the chart always corresponds to the last data point in the series.
Is this possible?
I tried setting `dataGrouping: { lastAnchor: 'lastPoint' }` but that did not have the desired effect.
Thanks!