Reputation: 5902
We are using Coreplot to draw Charts in our IOS application, however we can't make the charts support zooming or panning. We are still running the application on the emulator didn't install on a real device yet because we are waiting for the Developer ID from Apple. Does any one know if Coreplot support these features?
Thanks in advance
Upvotes: 0
Views: 342
Reputation: 4267
Short answer: yes, Core Plot supports zooming and panning.
You have to set the allowsUserInteraction
bool of your plot space to YES
.
See this link for more information.
Also, if you want to test zooming in the simulator, you can do this by pressing the alt button and click+drag with your mouse. Panning is just normal click+drag.
Upvotes: 2