HighCharts将折线animation设为虚线

我是highCharts新手,想知道如何closures折线图的animation。

我试图把它设置为虚假的情节,但没有成功。

谢谢

我在这里回答的是一样的,但你必须改变column

 plotOptions: { line: { animation: false } } 

演示

如果你想从所有types中删除animation,你可以使用series

 plotOptions: { series: {    animation: false  } } 

如果您想要完全禁用Highcharts中的所有animation(当打开或closures线条时也会出现这些情况),请使用以下命令:

 chart: { animation: false } 

有关更多信息,请参阅http://api.highcharts.com/highcharts#chart.animation 。 ( 演示

Interesting Posts