我试图更改图表的主题。
我的代码是:
graph = [[CPTXYGraph alloc] initWithFrame:CGRectZero];
graph.plotAreaFrame.borderLineStyle = nil;
我认为通过这样做,图表的边框将会消失。但它没有。
谁能告诉我为什么?
答案 0 :(得分:1)
图表的几个部分可以有边框线。试试这些:
graph.borderLineStyle = nil;
graph.plotAreaFrame.plotArea.borderLineStyle = nil;