HighCharts turn animation false for line chart

user1869421 picture user1869421 · Dec 12, 2012 · Viewed 50.4k times · Source

I'm new to highCharts and want to know how I can turn off the animation for line charts.

I've tried setting it to false in plotlines but no success.

Answer

Ricardo Alvaro Lohmann picture Ricardo Alvaro Lohmann · Dec 12, 2012

It's the same that I answered here but you have to change column to line.

plotOptions: {
    line: {
        animation: false
    }
}

demo

If you want to remove animation from all types you can use series instead.

plotOptions: {
    series: {
        animation: false
    }
}