所以现在我用
绘制酒吧的颜色self.helloPlot = [CPTBarPlot tubularBarPlotWithColor:[CPTColor colorWithComponentRed:79.0f/255.0f green:178.0f/255.0f blue:204.0f/255.0f alpha:1.0f] horizontalBars:YES];
self.helloPlot.identifier = TickerSymbolHELLO;
我的目标是没有渐变,但“tubularBarPlotWithColor”具有渐变。我需要帮助才能在没有使用“tubularBarPlotWithColor”
的阴影或渐变的情况下显示它谢谢
答案 0 :(得分:0)
+tubularBarPlotWithColor:
是创建带渐变填充的条形的捷径。如果您不想要渐变,请将fill
设置为纯色。
self.helloPlot.fill = [[CPTFill fillWithColor:[CPTColor redColor]];