//饼图 dt数据结构为 columndata(数据) columnname(文本) 这两列
private void ViewChart(DataTable _dt, string _title)
{
this.ct_coll.Series.Clear();
this.ct_coll.Legends.Clear();
this.ct_coll.Series.Add(new Series("Data"));
this.ct_coll.Legends.Add(new Legend("Stores")); //右边标签列
this.ct_coll.Series["Data"].ChartType = SeriesChartType.Pie;
this.ct_coll.Series["Data"]["PieLabelStyle"] = "Inside";//Inside 数值显示在圆饼内 Outside 数值显示在圆饼外 Disabled 不显示数值
this.ct_coll.Series["Data"]["PieLineColor"] = "Black";
//this.ct_coll.Series["Data"].IsValueShownAsLabel = true;
//this.ct_coll.Series["Data"].IsVisibleInLegend = true;
//this.ct_coll.Series["Data"].ShadowOffset = 1;//阴影偏移量
this.ct_coll.Series["Data"].ToolTip = "#VAL{D} 人";//鼠标移动到上面显示的文字
this.ct_coll.Series["Data"
C#使用Ms Chart 实现饼图
最新推荐文章于 2025-10-23 20:10:04 发布
本文详细介绍了如何在C#中使用Ms Chart库来生成饼图。通过实例代码,展示了设置数据、样式以及交互功能的方法,帮助开发者实现数据可视化。

最低0.47元/天 解锁文章
1044

被折叠的 条评论
为什么被折叠?



