how remove zoom feature from android mpchart library?
I added the following line:
holder.chart.setTouchEnabled(false);
and zoom feature was removed and also all possible touch-interactions with the chart. See reference.
Try This:
chart.setTouchEnabled(false);
chart.setPinchZoom(false);
chart.setDoubleTapToZoomEnabled(false);