LA.27
LA.27

Reputation: 2248

Can't see the last point in Highstock chart

I've been working with Highstock chart and I noticed that when there are many points in the chart it's not possible to take a look at the last one using a tooltip:

A chart with a tooltip You can see that the tooltip show point for 9th May, while there is another one for 10th May (as you can see in the range selector about: 24th May 2004 - 10th May 2011).

Is there a way to present to the user the last point, instead of the penultimate one ?

Upvotes: 0

Views: 332

Answers (1)

Paweł Fus
Paweł Fus

Reputation: 45079

Issue was caused by dataGrouping, disable it:

plotOptions: {
    series: {
         dataGrouping: { 
             enabled: false
         }
    }
}

Upvotes: 1

Related Questions