我正在使用 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,但是轴上的标签没有使用我的格式化程序。我究竟做错了什么?