How to zoom in and out a pie chart in iPhone using core-plot? Any suggestions?
Asked
Active
Viewed 368 times
2 Answers
2
Change the pieRadius
to change the size of the pie.

Eric Skroch
- 27,381
- 3
- 29
- 36
-
Thanks, How should i change the pie radius by touching pie chart ? what event should be used to calculate pie radius ? – Manish Jain Nov 14 '11 at 04:58
0
Try This :
-(void)pieChart:(CPTPieChart *)plot sliceWasSelectedAtRecordIndex:(NSUInteger)index{
plot.pieRadius+=10;
}

Linus Kleen
- 33,871
- 11
- 91
- 99

Abhishek Bedi
- 5,205
- 2
- 36
- 62