I just post the code here, I have the same problems as before and solved it, but now I have forgotten what change I made, please look at the code below, you will get the exact solution what you want.
It works great, just need to test with this ...
NSNumberFormatter *yAxisFormat = [[[NSNumberFormatter alloc] init] autorelease]; [yAxisFormat setNumberStyle:NSNumberFormatterNoStyle]; CPXYAxis *y = axisSet.yAxis; y.axisLineStyle = lineStyle; y.majorTickLineStyle = nil; y.minorTickLineStyle = nil; y.majorIntervalLength = CPDecimalFromString(@"20"); y.orthogonalCoordinateDecimal = CPDecimalFromString(@"0"); y.title = @"Number of Cards Learned"; y.titleOffset = 45.0f; y.titleLocation = CPDecimalFromFloat(50.0f); y.labelFormatter = yAxisFormat;
if further problems then just let me know.
source share