0
A
回答
0
是,克里希納。您可以將多個餅圖添加到同一圖表中,如下所示:
CPTGraphHostingView *hostingView = (CPTGraphHostingView *) self;
CPTXYGraph *graph;
// set up the graph parameters
...
...
hostingView.hostedGraph = graph;
// Pie chart 1
CPTPieChart *pieChart1 = [[CPTPieChart alloc] init];
// Pie Chart 2
CPTPieChart *pieChart2 = [[CPTPieChart alloc] init];
// Add them to the graph
[graph addPlot:pieChart1];
[graph addPlot:pieChart2];
相關問題
- 1. 使用CorePlot繪製餅圖
- 2. 使用CorePlot庫繪製多個圖形
- 3. 如何使用Coreplot繪製多個顏色的繪圖
- 4. 如何使用coreplot繪製如下餅圖?
- 5. 如何在coreplot中繪製多個圖
- 6. 繪製majorGridLine繪圖圖 - CorePlot
- 7. 使用Coreplot繪圖數據
- 8. 繪製餅圖
- 9. 繪製gRaphaeljs餅圖
- 10. CorePlot餅圖borderLineStyle文物
- 11. 如何使用pdfbox繪製餅圖?
- 12. 使用jspdf庫繪製餅圖
- 13. 使用jqplot繪製三維餅圖
- 14. 使用PHP繪製餅圖ImageMagick
- 15. 使用iOS石英2D繪製餅圖
- 16. CorePlot實時繪圖
- 17. 使用多個餅圖
- 18. 無法使用海圖繪製兩個餅圖
- 19. 如何使用html5畫布繪製多級餅圖?
- 20. 用Google地圖繪製餅圖片
- 21. Xamarin Android繪製餅圖
- 22. 爲餅圖繪製輪廓
- 23. 繪製餅圖與UIBezierPath
- 24. jqPlot繪製餅圖問題
- 25. 在ggplot2中繪製餅圖
- 26. 在Android中繪製餅圖?
- 27. MPAndroidChart不繪製餅圖
- 28. Coreplot Legend圖外繪圖
- 29. 在android中繪製一個2D餅圖,就像餅圖。
- 30. 如何使用coreplot實時繪製圖表?
@krishna您是否設法繪製多個餅圖? – simple