如何在ipad中使用核心图绘制3D饼图?

时间:2011-11-02 08:35:09

标签: iphone xcode core-plot

我必须使用core-plot API在ipad中绘制3D饼图。我可以这样做吗? 请指教。

2 个答案:

答案 0 :(得分:2)

Core Plot仅限2-D。您可以使用阴影和/或叠加填充在饼图上创建模拟三维效果。有关样本,请参阅Plot Gallery示例应用程序。

答案 1 :(得分:1)

查看BNPieChart。它是一个开源。 代码示例

BNPieChart *chart = [[[BNPieChart alloc] initWithFrame:frame] autorelease];
[chart addSlicePortion:0.1 withName:@"Orange"];
[chart addSlicePortion:0.2 withName:@"Fandango"];
[chart addSlicePortion:0.1 withName:@"Blue"];
[chart addSlicePortion:0.1 withName:@"Cerulean"];
[chart addSlicePortion:0.3 withName:@"Green"];
[chart addSlicePortion:0.1 withName:@"Yellow"];
[chart addSlicePortion:0.1 withName:@"Pink"];

Code

的参考