首页 > 代码库 > MsChart,饼状图
MsChart,饼状图
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,饼状图
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。