我正在使用Core-plot绘制垂直条形图。在那可以删除其边框矩形边框。我想要一个简单的图表。任何建议或指导都热烈欢迎。
先谢谢, 纳温
答案 0 :(得分:8)
1.如果您想使用CPXYGraph的主题,那么只需要
graph = [[CPXYGraph alloc] initWithFrame:CGRectZero];
CPTheme *theme = [CPTheme themeNamed:kCPPlainWhiteTheme];
[graph applyTheme:theme];
graph.plotAreaFrame.borderLineStyle = nil;
2.更快捷方便的解决方案是:
[graph applyTheme:nil];
答案 1 :(得分:0)
我没有足够的声誉评论铍的答案,但我想我应该。我浏览了3页以获得类似的答案,最后找到了这一页。
以前的帖子都没有提到graph.plotAreaFrame.borderLineStyle = nil AFTER applyTheme的设置。在我的项目中,我采用了一些示例代码,将applyTheme放在最后,我不知道设置边框会被主题覆盖,并且一次又一次失败。