I want to disable pinch zoom at barchart in MPAndroidChart library how i can do that.
barchart
MPAndroidChart
library.barchart.setpinzoomenable(false);
also not working.
Try this,
Disable all zooming:
chart.setScaleEnabled(false);
More info refer here