如何在加载 LIghtningChart JS 时禁用缩放动画?
How to disable zooming animation on loading LIghtningChart JS?
请帮助我找到禁用缩放动画的方法。我不想禁用缩放。我只是为了禁用在 LightningChart JS 中缩放时发生的动画
您可以通过对所有轴使用 Axis.setAnimationZoom(undefined) 来禁用缩放动画。
// Disable zooming for the default X and Y Axes
chart.getDefaultAxisX().setAnimationZoom(undefined)
chart.getDefaultAxisY().setAnimationZoom(undefined)
请帮助我找到禁用缩放动画的方法。我不想禁用缩放。我只是为了禁用在 LightningChart JS 中缩放时发生的动画
您可以通过对所有轴使用 Axis.setAnimationZoom(undefined) 来禁用缩放动画。
// Disable zooming for the default X and Y Axes
chart.getDefaultAxisX().setAnimationZoom(undefined)
chart.getDefaultAxisY().setAnimationZoom(undefined)