如何创建 CPBarPlot 的阴影?
我想创建条形图的阴影我应该做什么。我使用核心情节框架
I want to create shadow of barplot what should I do . I use core-plot framwork
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想创建条形图的阴影我应该做什么。我使用核心情节框架
I want to create shadow of barplot what should I do . I use core-plot framwork
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我不知道在单个条上给出确切的阴影效果。但与阴影效果类似,您可以尝试使用“管状”条而不是扁条。 +(CPBarPlot *)tubularBarPlotWithColor:(CPColor *)colorhorizontalBars:(BOOL)水平
类似这样的
barPlot = [CPBarPlot tuberBarPlotWithColor:[CPColor greenColor]horizontalBars:NO];
[barGraph addPlot:barPlot toPlotSpace:barPlotSpace];
希望这有帮助。
I dont know abt giving exactly shadow effect on individual bar. But similar to shadow effect, You can try using 'tubular' bar rather than flat bars. +(CPBarPlot *)tubularBarPlotWithColor:(CPColor *)color horizontalBars:(BOOL)horizontal
something like this
barPlot = [CPBarPlot tubularBarPlotWithColor:[CPColor greenColor] horizontalBars:NO];
[barGraph addPlot:barPlot toPlotSpace:barPlotSpace];
Hope this helps.