Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 highCharts 的新手,想知道如何关闭折线图的动画。
我尝试在情节线中将其设置为 false,但没有成功。
这与我在这里回答的相同,但您必须更改column为line.
column
line
plotOptions: { line: { animation: false } }
演示
如果要从所有类型中删除动画,则可以series改用。
series
plotOptions: { series: { animation: false } }
如果您想完全禁用 Highcharts 中的所有动画(在打开或关闭线条时也会发生这些动画),请使用以下命令:
chart: { animation: false }
有关更多信息,请参阅http://api.highcharts.com/highcharts#chart.animation。(演示)