使用什么方法来停止图表的滚动?
What method to use to stop scrolling of a chart?
我正在查看 LightningChartJs 的 chartXY 的方法,但似乎找不到暂停的方法 scroll.I 想知道播放(继续)滚动的方法。
提前致谢
您可以通过调用 Axis.stop() method.
暂停滚动
然后您可以通过调用 Axis.release() method 继续滚动。这会将视图滚动到添加的最新添加值,同时暂停滚动。
// Cache the default X axis for this example
const axisX = chart.getDefaultAxisX()
// Stop the axis from scrolling after 5 seconds
setTimeout(() => axisX.stop(), 5000)
// Release the axis after 6 seconds
setTimeout(() => axisX.release(), 6000 )
我正在查看 LightningChartJs 的 chartXY 的方法,但似乎找不到暂停的方法 scroll.I 想知道播放(继续)滚动的方法。 提前致谢
您可以通过调用 Axis.stop() method.
暂停滚动然后您可以通过调用 Axis.release() method 继续滚动。这会将视图滚动到添加的最新添加值,同时暂停滚动。
// Cache the default X axis for this example
const axisX = chart.getDefaultAxisX()
// Stop the axis from scrolling after 5 seconds
setTimeout(() => axisX.stop(), 5000)
// Release the axis after 6 seconds
setTimeout(() => axisX.release(), 6000 )