0

How to zoom in and out a pie chart in iPhone using core-plot? Any suggestions?

Oak Bytes
  • 4,649
  • 4
  • 36
  • 53
Manish Jain
  • 865
  • 3
  • 13
  • 28

2 Answers2

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