score:44

Accepted answer

Yes, you have to use Highcharts.setOptions.
This way you can set default options for all your charts.

Highcharts.setOptions({
    plotOptions: {
        series: {
            animation: false
        }
    }
});

http://api.highcharts.com/highstock#Highcharts

score:1

if still not disabling the animation, after setting

 plotOptions: {
    series: {
        animation: false
    }
 }

in highcharts.js find

plotOptions : {
        line : {
            allowPointSelect : !1,
            showCheckbox : !1,
            animation : {
                duration : 0
            },

Here I have set the animation duration 0, it works :)

score:1

You can disable the animations globally in highcharts by doing:

chart: {
  animation: false
},

Reference: http://api.highcharts.com/highcharts/chart.animation


Related Query

More Query from same tag