I have setPinchZoom to false but I can still pinch zoom the bar chart
besides, can I disable bar selection feature and hide the dataset legend at the bottom of the x axis?
thanks!
Disable all zooming:
chart.setScaleEnabled(false)
Disable highlight / selection:
chart.setHighlightEnabled(false)
Disable legend:
chart.getLegend().setEnabled(false)
Not Working for 3.0.3
How to disable setHoleRadius() circle click events?
i am using MPChartLib in android
how to enable pinch zoom in candle stick charts?
Most helpful comment
Disable all zooming:
chart.setScaleEnabled(false)Disable highlight / selection:
chart.setHighlightEnabled(false)Disable legend:
chart.getLegend().setEnabled(false)