如何在 LightningChart JS 中禁用图表动画?
How to disable animations for charts in LightningChart JS?
我想禁用 LightningChart JS 图表中的动画。我该怎么做?
禁用动画取决于您要禁用的动画。
要禁用轴滚动动画,您可以使用:axis.setAnimationScroll(undefined)
setAnimationScroll
对于xy图表轴缩放axis.setAnimationZoom(undefined)
setAnimationZoom
对于漏斗图、金字塔图、蜘蛛图、饼图和仪表图。 chart.setAnimationsEnabled(false)
我想禁用 LightningChart JS 图表中的动画。我该怎么做?
禁用动画取决于您要禁用的动画。
要禁用轴滚动动画,您可以使用:axis.setAnimationScroll(undefined)
setAnimationScroll
对于xy图表轴缩放axis.setAnimationZoom(undefined)
setAnimationZoom
对于漏斗图、金字塔图、蜘蛛图、饼图和仪表图。 chart.setAnimationsEnabled(false)