我正在尝试创建一个简单的纯色条形图,并且正在使用 Core Plot。我能找到的只是tubularBarPlotWithColor 方法:
+(CPTBarPlot *)tubularBarPlotWithColor:(CPTColor *)color horizontalBars:(BOOL)horizontal;
是否有等效的“flatBarPlotWithColor”(非渐变)方法?
...我刚刚通过实例化方法找到了答案:
plot.fill = [CPTFill fillWithColor:[CPTColor greenColor]];
不过,最好有一个简单的类方法来处理这个问题。
里克。