Disable pinch zoom in MPAndroidChart library
Try this,
Disable all zooming:
chart.setScaleEnabled(false);
More info refer here
Marker will continue to work but zoom will be disable
chart.setTouchEnabled(true)
chart.setPinchZoom(false)
chart.isDoubleTapToZoomEnabled = false