本文介绍了如何在csharp Winform中显示FusionPie图表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在csharp Winform中显示FusionPie图表
我从数据表中获取价值.

我想要Fusion Chart(Pie).
现在我正在使用Zedgraph,我的代码是

How to display FusionPie Chart in csharp Winform
I am taking value from datatable.

I want Fusion Chart(Pie).
Now I am using Zedgraph and my code is

GraphPane myPane = zgc.GraphPane;
            myPane.Border.IsVisible = false;
            myPane.Legend.IsVisible = false;
            
            
            Color color = CreateRandomColor();
                      
            for (int i = 0; i < getCategoryTable().Rows.Count; i++)
            {
                myPane.AddPieSlice(getCategoryCount(Convert.ToInt32(getCategoryTable().Rows[i]["ID"])), color, 0.01, Convert.ToString(getCategoryTable().Rows[i]["categoryname"]));
                
            }


在这里


here

getCategoryCount(Convert.ToInt32(getCategoryTable().Rows[i]["ID"])) 


显示 名称


is name to display and

Convert.ToString(getCategoryTable().Rows[i]["categoryname"])



是与之相关的价值.

而不是我想要融合饼图
请告诉我完整的过程.

谢谢.



is value associated with it.

instead of this i want fusion pie chart
Please tell me complete process.

Thanks.

推荐答案


这篇关于如何在csharp Winform中显示FusionPie图表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 22:06