Core Plot饼图上奇怪的边框

时间:2012-06-02 18:46:17

标签: ios core-plot pie-chart

为什么Core Plot会绘制这两行?

ios graph

这就是我设置图表的方式:

// setup the pie chart
graph = [[CPTXYGraph alloc] initWithFrame:[_pieView bounds]];
[_pieView setHostedGraph:graph];

CPTPieChart *pieChart = [[CPTPieChart alloc] init];
[pieChart setDataSource:self];
[pieChart setPieRadius:75.0];
[pieChart setIdentifier:@"PieChart1"];
[pieChart setStartAngle:M_PI_4];
[pieChart setSliceDirection:CPTPieDirectionClockwise];

[graph addPlot:pieChart];

_pieViewCPTGraphHostingView*

如何删除两条黑线?我试着做How do remove the border around a core-plot graph中描述的内容,但没有用。

1 个答案:

答案 0 :(得分:5)

这不是边框 - 它是CPTXYGraph附带的默认轴。这是删除它们的一行代码:

graph.axisSet = nil;