在CorePlot中,CPTXYGraph是否可以在Y轴上显示int值而不是十进制值?
答案 0 :(得分:5)
只需创建一个数字格式化程序并将其应用于y轴。像这样的东西
NSNumberFormatter *yLabelFormatter = [[NSNumberFormatter alloc] init];
[yLabelFormatter setGeneratesDecimalNumbers:NO];
CPTXYAxisSet *axisSet = (CPTXYAxisSet *)graph.axisSet;
CPTXYAxis *y = axisSet.yAxis;
y.labelFormatter = yLabelFormatter