Is it possible to disable zoom in lightningChartJS chart?

421 Views Asked by At

In a chart created using LightningChartJS one can zoom in or zoom out of a particular section by dragging the mouse.Is it possible to disable the zoom functionality?

1

There are 1 best solutions below

0
On BEST ANSWER

ChartXY has several methods for enabling/disabling individual mouse/touch interactions, all of which are named with the prefix: setMouseInteraction...

Zooming in can be disabled with

chart.setMouseInteractionRectangleZoom( false )

Fitting can be disabled with

chart.setMouseInteractionRectangleFit( false )