简短的介绍
我正在将图表用于特定应用程序,我需要将渲染的 3D 饼图的视角和自动标签的值从饼图标签名称更改为相应的饼图值。
这是图表的外观:
初始化
这就是我初始化它的方式:
Dictionary<string, decimal> secondPersonsWithValues = HistoryModel.getSecondPersonWithValues();
decimal[] yValues = new decimal[secondPersonsWithValues.Values.Count]; //VALUES
string[] xValues = new string[secondPersonsWithValues.Keys.Count]; //LABELS
secondPersonsWithValues.Keys.CopyTo(xValues, 0);
secondPersonsWithValues.Values.CopyTo(yValues, 0);
incomeExpenseChart.Series["Default"].ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
incomeExpenseChart.Series["Default"].Points.DataBindXY(xValues, yValues);
incomeExpenseChart.ChartAreas["Default"].Area3DStyle.Enable3D = true;
incomeExpenseChart.Series["Default"].CustomProperties = "PieLabelStyle=Outside";
incomeExpenseChart.Legends["Default"].Enabled = true;
incomeExpenseChart.ChartAreas["Default"].Area3DStyle.LightStyle = System.Windows.Forms.DataVisualization.Charting.LightStyle.Realistic;
incomeExpenseChart.Series["Default"]["PieDrawingStyle"] = "SoftEdge";
基本上,我使用 查询数据库中的数据HistoryModel.getSecondPersonWithValues();
以获取对,Dictionary<string, decimal>
其中key是person,value是ammount。
问题 #1
我需要的是能够将标记的标签从人名更改为安装量或添加另一个具有相同颜色的安装量标签(参见图片)。
问题 #2
另一个问题是我需要更改 3D 饼图的视角。也许这很简单,我只是不知道所需的属性,或者我需要覆盖一些绘画事件。无论哪种方式,任何一种方式都会被应用。
在此先感谢乔治。