I have a chart on a view. It is a 3D bar chart. By default the user can pan around the chart and zoom in and out.
How do I disable panning and/or zooming?
Also - just a note - I notice that a strange colored rectangle appears in the upper right corner of the chart when zooming. What is this?
Thanks!
iOS Disable Panning and Zooming
Re: iOS Disable Panning and Zooming
Hello,
you should be able to disable the Zoom and Pan by using :
About the rectangle, it's displayed to show the area selected to be zoomed, we're improving this functionality for further versions.
you should be able to disable the Zoom and Pan by using :
Code: Select all
chart.Chart.Zoom.Allow = false;
chart.Chart.Panning.Allow = ScrollModes.None;
Pep Jorge
http://support.steema.com
http://support.steema.com
Re: iOS Disable Panning and Zooming
Exactly what I needed. Thanks!
Charles
Charles