0

我正在尝试更改我的图表的主题。

我的代码是:

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

我认为这样做会使图形的边界消失。但它没有。

谁能告诉我为什么?

4

1 回答 1

1

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

graph.borderLineStyle = nil;
graph.plotAreaFrame.plotArea.borderLineStyle = nil;
于 2012-05-11T20:10:08.293 回答