1

我正在使用 CorePlot 并且我正在尝试使用我的数字格式化程序,但轴上的标签显然没有使用我的格式化程序。这是我正在使用的代码:

CPTXYGraph *xygraph = [[CPTXYGraph alloc] initWithFrame:fullFrame];
self.graph = xygraph;
self.graph.title = @"Plot of Statistical Data Points";
self.graph.titleDisplacement = CGPointMake(0, -10);

hostingView.hostedGraph = self.graph;

CPTAxisSet *axisSet = xygraph.axisSet;
for (CPTAxis *axis in axisSet.axes) {
    NSLog(@"setting axis (%@) label formatter=%@ -> %@", axis, axis.labelFormatter, self.formatter.completedValueFormatter);
    axis.labelFormatter = self.formatter.completedValueFormatter;
}

我已经验证 self.formatter.completedValueFormatter 是一个很好的 NSNumberFormatter,但是轴上的标签没有使用我的格式化程序。我究竟做错了什么?

4

1 回答 1

1

我在 Plot Gallery 示例应用程序中测试了您的代码,并且更改标签格式化程序似乎在最新代码中正常工作。

于 2013-01-27T22:26:29.057 回答