By default, for high-performance charts, by default it seems that the closest point to your cursor (horizontally) is in a hang state. This means that a tooltip is triggered when you get more than half the way to the next point on the line. I want to have a tooltip when Iām directly above a point, and then I remain active until Iām directly above another point.
Here is the problem scenario with the corresponding code below:
http://jsfiddle.net/qNLu2/
$(function () { $('#container').highcharts({ chart: { }, xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }, series: [{ data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }, { data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2] }] });
});