Note that there are some explanatory texts on larger screens.

plurals
  1. POHighcharts tooltips flickering ON IE8
    primarykey
    data
    text
    <p><a href="https://i.stack.imgur.com/m4iNK.gif" rel="nofollow noreferrer">enter image description here</a><img src="https://i.stack.imgur.com/2Rzom.gif" alt="enter image description here">Hi I am using below code to plot the charts througs Highchart API. By this tooltips are working fine on firefox and also on chrome but on IE tooltips are flickering. and as we move mouse tooltips remain for some sort of time while other has appear.</p> <pre> $(document).ready(function(){ var chart=new Highcharts.Chart({ chart : { zoomType: 'xy', spacingRight: 20, renderTo : "container", type : graphType }, tooltip: { enabled: true, followPointer: true }, title : { text : graphTitleForChart },xAxis : { type: 'datetime' },credits: { enabled: false }, legend: { align: 'right', verticalAlign: 'middle', layout: 'vertical' }, yAxis : { min : 0 }, plotOptions :{ area: { stacking: 'normal', lineColor: '#666666', lineWidth: 1, marker: { enabled : false, symbol : 'circle' } }, column: { stacking: 'normal', pointPadding : 0, lineColor: '#666666', lineWidth: 0, marker: { enabled : false, symbol : 'circle' } }, pie: { allowPointSelect : true }, line: { marker: { enabled : false, symbol : 'circle' } }, series: { events: { legendItemClick: function(event) { var seriesIndex = this.index; var series = this.chart.series; if(this.name == 'Select All'){ if(this.visible){ for (var i = 0; i &lt; series.length; i++) { series[i].hide(); } }else{ for (var i = 0; i &lt; series.length; i++) { series[i].show(); } } return false; }else if(series.length &gt; 1){ var i; for (i = 0; i &lt; series.length; i++) { if(!series[i].visible){ break; } } } } } } }, series : arrSeries }); }); </pre> <p>In this, graphType will containe either of 'area','column','pie','line' .<br> Please tell me what's wrong in this. Also when all the graph series have 0 values then at y-axis 0 line shows in the middle of y-axis, how can I fix origin of Y and X axis to (0,0)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload