score:2

Accepted answer

this is unfortunately bug in highcharts, see this.

score:8

try this in your series: enablemousetracking: false

in your case, it would be:

series: [{ 
    data: [15.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, {
        enablemousetracking: false,
        y: 26.5
    }, 23.3, 18.3, 13.9, 9.6]    
}]

i hope this helps!

(update on 6/23/17): for those who want to apply this to every series in the chart, not just one, you would do the following:

plotoptions: {
    series: { enablemousetracking: false }
}

Related Query

More Query from same tag