渐变到纯色核心图

时间:2014-05-06 16:37:11

标签: ios core-plot

所以现在我用

绘制酒吧的颜色
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”

的阴影或渐变的情况下显示它

谢谢

1 个答案:

答案 0 :(得分:0)

+tubularBarPlotWithColor:是创建带渐变填充的条形的捷径。如果您不想要渐变,请将fill设置为纯色。

self.helloPlot.fill = [[CPTFill fillWithColor:[CPTColor redColor]];