gpt4 book ai didi

iphone - CorePlot 去除条形阴影效果

转载 作者:行者123 更新时间:2023-12-03 20:33:59 25 4
gpt4 key购买 nike

在 iPhone 应用程序中,我使用核心 Plot 垂直条形图。

如何消除竖条中的阴影效果?

这里如图所示,条形图显示有阴影

enter image description here

这是代码:

CPBarPlot *barPlot = [CPBarPlot tuberBarPlotWithColor:[CPColor colorWithComponentRed:111 green:129 blue:113 alpha:1.0]horizo​​ntalBars:NO];

barPlot.shadowColor=NO;

如何消除这种阴影效果?

请提供帮助和建议。

谢谢

最佳答案

尚未对此进行测试,但我的猜测是您看到的不是阴影,而是使用“tubularBarPlotWithColor”生成的渐变填充。阴影可能是酒吧边界之外的东西。

相反,尝试使用以下命令创建条形图:

CPBarPlot *barPlot = [[CPBarPlot alloc] init];

然后使用:

barPlot.fill = [CPFill fillWithColor:myCPColor];

或者如果您确实想要渐变填充:

fillGradient = [CPGradient gradientWithBeginningColor:myCPColorBegin endingColor:myCPColorEnd]; 
barPlot.fill = [CPFill fillWithGradient:fillGradient];

希望这有帮助!克拉斯

关于iphone - CorePlot 去除条形阴影效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5495767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com