Why labelingPolicy distinct of CPTAxisLabelingPolicyNone don´t found in string labels???
x.labelingPolicy = CPTAxisLabelingPolicyNone;
I want this GRIDLineStyle, but with my text labels:
x.labelingPolicy = CPTAxisLabelingPolicyFixedInterval
I complete xAxisLabels with this code:
NSMutableArray *labels = [[NSMutableArray alloc] initWithCapacity:[labelsAxisX count]];
int idx = 0;
for (NSString *product in labelsAxisX)
{
CPTAxisLabel *label = [[CPTAxisLabel alloc] initWithText:product textStyle:x.labelTextStyle];
label.tickLocation = CPTDecimalFromInt(idx);
label.offset = 5.0f;
[labels addObject:label];
[label release];
idx++;
}
x.axisLabels = [NSSet setWithArray:labels];
[labels release];
With the
CPTAxisLabelingPolicyNone
labeling policy, you need to provide the tick locations (major and/or minor) in addition to making the labels. If you'd rather use the fixed interval labeling policy, you could make a custom number formatter for the axis that returns your text labels instead of numbers.Here's an example adapted from the Labeling Policy Demo in the Plot Gallery example app:
Minor tick locations work the same way.