码迷,mamicode.com
首页 > 其他好文 > 详细

Devexpress中PIE案列

时间:2015-06-25 19:08:28      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 public partial class WebForm4 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string sql = string.Format("select * from a_Stu");
            CreatePie(MyService.SqlHelper.ExecuteDataSet(CommandType.Text, sql));
        }
        public void CreatePie(DataSet ds) {
            Series Series1 = new Series("OnePie", ViewType.Pie);
            //面板添加一个Series  类型Pie
            WebControl.Series.Add(Series1);
            SeriesPoint [] sp=new SeriesPoint[ds.Tables[0].Rows.Count];
            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                sp[i] = new SeriesPoint(ds.Tables[0].Rows[i]["name"].ToString(), ds.Tables[0].Rows[i]["age"].ToString());
            }
            Series1.Points.AddRange(sp);
            //设置百分比
           Series1.Label.PointOptions.ValueNumericOptions.Format = NumericFormat.Percent;
            //设置显示名称及数据
            Series1.LegendPointOptions.PointView = PointView.ArgumentAndValues;

            //显示饼图数据位置
            ((PieSeriesLabel)Series1.Label).Position = PieSeriesLabelPosition.TwoColumns;
        }
    }

 

Devexpress中PIE案列

标签:

原文地址:http://www.cnblogs.com/xumingyang/p/4600443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!