Here is my code:
CPXYPlotSpace *barGraphPlotSpace = [[CPXYPlotSpace alloc] init];
barGraphPlotSpace.yRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromFloat(0.0) length:CPDecimalFromFloat(100.0)];
CPXYAxis *rightY = [[CPXYAxis alloc] init];
rightY.coordinate = CPCoordinateY;
rightY.orthogonalCoordinateDecimal = CPDecimalFromFloat(oneDay*7);
rightY.plotSpace = barGraphPlotSpace;
[graph addPlotSpace:barGraphPlotSpace];
This doesn't add another axis to my ...