CorePlot CPTXYGraph Y轴整数不是小数

时间:2012-12-28 16:24:31

标签: core-plot

在CorePlot中,CPTXYGraph是否可以在Y轴上显示int值而不是十进制值?

1 个答案:

答案 0 :(得分:5)

只需创建一个数字格式化程序并将其应用于y轴。像这样的东西

    NSNumberFormatter *yLabelFormatter = [[NSNumberFormatter alloc] init];
    [yLabelFormatter setGeneratesDecimalNumbers:NO];

    CPTXYAxisSet *axisSet = (CPTXYAxisSet *)graph.axisSet;
    CPTXYAxis *y = axisSet.yAxis;

    y.labelFormatter = yLabelFormatter