如何为Core Plot图表的轴提供标签?

时间:2010-05-25 12:32:42

标签: iphone core-plot

我正在使用Core Plot框架,并尝试使用示例应用程序。有没有使用此框架的教程?

具体来说,如何在图表中为X轴和Y轴提供标签?

2 个答案:

答案 0 :(得分:35)

不幸的是,鉴于框架的API尚未稳定,因此没有那么多的教程,而且确实存在的一些教程已经过时了。示例应用程序确实是了解如何使用框架的最佳来源。

例如,要提供自定义轴标签,请查看CPTestApp-iPhone的CPTestAppBarChartController.m源文件。该示例中的条形图具有由以下代码定义的自定义X轴标签:

// Define some custom labels for the data elements
x.labelRotation = M_PI/4;
x.labelingPolicy = CPAxisLabelingPolicyNone;
NSArray *customTickLocations = [NSArray arrayWithObjects:[NSDecimalNumber numberWithInt:1], [NSDecimalNumber numberWithInt:5], [NSDecimalNumber numberWithInt:10], [NSDecimalNumber numberWithInt:15], nil];
NSArray *xAxisLabels = [NSArray arrayWithObjects:@"Label A", @"Label B", @"Label C", @"Label D", @"Label E", nil];
NSUInteger labelLocation = 0;
NSMutableArray *customLabels = [NSMutableArray arrayWithCapacity:[xAxisLabels count]];
for (NSNumber *tickLocation in customTickLocations) {
    CPAxisLabel *newLabel = [[CPAxisLabel alloc] initWithText: [xAxisLabels objectAtIndex:labelLocation++] textStyle:x.labelTextStyle];
    newLabel.tickLocation = [tickLocation decimalValue];
    newLabel.offset = x.labelOffset + x.majorTickLength;
    newLabel.rotation = M_PI/4;
    [customLabels addObject:newLabel];
    [newLabel release];
}

x.axisLabels =  [NSSet setWithArray:customLabels];

首先,将轴标签策略设置为CPAxisLabelingPolicyNone,让框架知道您将提供自定义标签,然后创建一个带有相应位置的标签数组,最后将该标签数组分配给X轴上的axisLabels属性。

答案 1 :(得分:0)

要提供自定义格式标签,您可以将格式化程序分配给轴的labelFormatter属性。您可以使用根据您的首选项配置的NSNumberFormatter,例如:

NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
// ... configure formatter

CPTXYAxis *y = axisSet.yAxis;
y.labelFormatter = formatter;

或者,如果您需要更具体的格式,您可以继承NSNumberFormatter并覆盖stringForObjectValue:方法以执行您想要的确切格式。