I need to implement bubble chart in an iPad application with each bubble having user interaction (touch event) to navigate to a detailed view.
Is there any framework or a way to do so (like bargraph, piechart, linegraph using coreplot)??
I tried implementing manually even using CGContextRef for each bubble as below
CGContextRef c = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor colorWithRed:1 green:1 blue:1 alpha:0.5];
[grayColor set];
CGRect rectangle = CGRectMake(xaxis+2,yaxis+2,size-4,size-4);
CGContextSetLineWidth(c,4);
CGContextStrokeEllipseInRect(c, rectangle);
CGContextAddEllipseInRect(c, rectangle);
CGContextSetFillColorWithColor(c, [bubbleColor CGColor]);
CGContextFillPath(c);
but unable to crop the edges from having user interaction i.e, touch event (since these bubbles are circles inscribed in UIView's).
Thanks in Advance