Iam using core-plot for drawing pie charts. I am using this code in the touch drag event of the CPTPieChart.h.
-(BOOL)pointingDeviceDraggedEvent:(id)event atPoint:(CGPoint)interactionPoint{
int x = self.anchorPoint.x;
int y = self.anchorPoint.y;
float dx = interactionPoint.x - x;
float dy = interactionPoint.y - y;
double a = atan2(dx,dy);
self.transform = CATransform3DMakeRotation(a, 0, 0, 1);
return YES;
}
The piechart is rotating mildly but the top and bottom portion are clipping upon rotating. Any help will be greatly appreciated. Thanks!