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であることを確認しましたが、軸のラベルが私のフォーマッターを使用していません。私は何が間違っているのですか?