如何改变CPTXYGraph的主题

时间:2012-05-11 08:00:13

标签: core-plot

我试图更改图表的主题。

我的代码是:

graph = [[CPTXYGraph alloc] initWithFrame:CGRectZero];
graph.plotAreaFrame.borderLineStyle = nil;

我认为通过这样做,图表的边框将会消失。但它没有。

谁能告诉我为什么?

1 个答案:

答案 0 :(得分:1)

图表的几个部分可以有边框线。试试这些:

graph.borderLineStyle = nil;
graph.plotAreaFrame.plotArea.borderLineStyle = nil;