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

MsChart,饼状图

时间:2015-01-24 20:00:40      阅读:407      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享HTML

后台代码:(dt为数据源)数据库中数据Sample

技术分享

技术分享
技术分享
1 Chart1.Series["Series1"].Label = "#PERCENT{P}";//百分比形式
2 Chart1.Series["Series1"].Points.DataBind(dt.DefaultView, "Result", "Score", "LegendText=Result,YValues=Score,ToolTip=Score");
3 Chart1.Series["Series1"].ChartType = SeriesChartType.Pie;
4 Chart1.Series["Series1"].ToolTip = "#LEGENDTEXT:#VAL{C} MILLION";
5
6 Chart1.ChartAreas["ChartArea1"].Area3DStyle.Enable3D = true;
7 Chart1.DataBind();
技术分享



Chart Image的保存,下载:

string path = @"C:\Chart\Chart_" + DateTime.Now.ToString("yyyyMMddhhmm") + @"\";

if (!System.IO.Directory.Exists(path))
{
      System.IO.Directory.CreateDirectory(path);
}

Chart1.SaveImage(path + "QC_Status.jpg", System.Web.UI.DataVisualization.Charting.ChartImageFormat.Jpeg);

MsChart,饼状图

标签:

原文地址:http://www.cnblogs.com/armyfai/p/4246344.html

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