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 )