disable on hover marker animation - Javascript highcharts

Javascript examples for highcharts:spline chart

Description

disable on hover marker animation

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Hover animation issue</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.js"></script> 
      <script src="https://code.highcharts.com/highcharts-more.js"></script> 
      <div id="container" style=""></div> 
      <script type="text/javascript">
Highcharts.chart('container', {
  chart: {/*  w  ww. j  av  a  2 s.co  m*/
    animation: false
  },
  tooltip: {
    enabled: false
  },
  series: [{
    type: 'spline',
    data: [3.9028, 3.0403, 16.3405, 4.9518, 3.7333, 4.641, 2.5056, 2.4056, 3.4347, 2.6404, 2.6774, 3.3233, 2.6019, 3.6615, 3.3708, 4.0551, 3.7458, 9.1944, 2.9377, 2.43, 4.7633, 3.1726]
  }]
});

      </script>  
   </body>
</html>

Related Tutorials