AchartEngine have two ways to zoom chart. First is by the "button" and second by the "fingers". Is there a way to disable one of them? I don't want to zoom by "fingers". Is it possible?
Asked
Active
Viewed 2,242 times
1 Answers
7
you can use XYMultipleSeriesRenderer methods to enable or disable zooming
mRenderer.setPanEnabled(false, false);
mRenderer.setZoomEnabled(false, false);
renderer.setZoomEnabled(false, false);
also see this

Zaz Gmy
- 4,236
- 3
- 19
- 30