Winfrom Chart饼状图的使用

来源:互联网 发布:菲律宾可以用淘宝吗 编辑:程序博客网 时间:2024/06/06 04:51

应用

using System.Windows.Forms.DataVisualization.Charting;

            

Title title1 = new Title();
            title1.Text = "总合格率(%)";
            title1.ForeColor = Color.Blue;
            this.chart1.Titles.Add(title1);


            this.chart1.Series.Clear();
            Series series1 = new Series();
            series1.ChartType = SeriesChartType.Pie;
            this.chart1.Series.Add(series1);


            int[] percents = new int[3] { 20, 30, 50 };
            string[] pointsText = new string[3] { "紧急", "严重", "普通" };
            Color[] myColor = new Color[3] { Color.FromArgb(0, 183, 238),
                                              Color.FromArgb(250, 205, 137),
                                                Color.FromArgb(255, 124, 255)};
            DataPoint[] AllPoints = new DataPoint[3];
            for (int i = 0; i < AllPoints.Length; i++)
            {
                AllPoints[i] = new DataPoint(i + 1, percents[i]);
                AllPoints[i].LegendText = "紧急";
                AllPoints[i].Color = myColor[i];
                AllPoints[i].ToolTip = percents[i].ToString() + "%";
                AllPoints[i].Label = percents[i].ToString() + "%";
                AllPoints[i].LabelForeColor = Color.Black;
                this.chart1.Series[0].Points.Add(AllPoints[i]);
            }            


            this.chart1.ChartAreas[0].Area3DStyle.Enable3D = true;
            this.chart1.Series[0]["PieLabelStyle"] = "Outside"; 
            this.chart1.EndInit();
0 0
原创粉丝点击