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.
在使用 LightningChartJS 创建的图表中,可以通过拖动鼠标放大或缩小特定部分。是否可以禁用缩放功能?
ChartXY有几种启用/禁用单个鼠标/触摸交互的方法,所有这些都以前缀命名:setMouseInteraction...
放大可以禁用
chart.setMouseInteractionRectangleZoom( false )
拟合可以禁用
chart.setMouseInteractionRectangleFit( false )