We have a webapp built using Codeigniter and PHP which uses the Highcharts library and javascript/html on the client side and is deployed on IIS.
The Highcharts library renders various charts on a screen, 5 to be precise. Each chart renders data having not more than 1000 rows.
The charts are plotted fine, but when the mouse is hovered around the chart, the mouse over is displayed in frames(only on chrome). Please see image below showing the frame lags caused by mouse tracking.
Surprisingly this behavior is observed only on chrome but not in IE or firefox.
Can anybody help by suggesting how to overcome this bad mouse tracking on chrome. Highcharts has a mouse tracker disable option, but we loose interactivity and mouse over features if it is disabled.
Any help to overcome this or improve the mouseover frame rendering on chrome will be deeply appreciated.
Using Highcharts version 2.0.4 , Now updated to latest version 4.0.4
Tooltip code is below, using the basic tooltip option for box and area chart.
tooltip: {
formatter: function() {
return 'The value for <b>' + this.x + '</b> is <b>' + this.y + '</b>, in series '+ this.series.name;
//return "hello";
}
}