I am using CorePlot to plot a scatter plot on iPhone. With the help of the following code, I am able to only plot all circles with a specific radius.
CPTPlotSymbol *greenCirclePlotSymbol = [CPTPlotSymbol ellipsePlotSymbol];
greenCirclePlotSymbol.fill = [CPTFill fillWithColor:[CPTColor greenColor]];
greenCirclePlotSymbol.size = CGSizeMake(2.0, 2.0);
I aim to plot circles with different radius.
Each circle of the scatter plot should have a different radius depending on the number of occurrences of the value.
Can anyone help me with this.
Thanks.