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
}
}