zoukankan      html  css  js  c++  java
  • MsChart<3> 饼状图

     

    MsChart,饼状图

    复制代码
     1 <asp:Chart ID="Chart1" runat="server" BorderlineDashStyle="Solid" BorderlineColor="Gray" Width="768px" BackGradientStyle="DiagonalLeft" BackSecondaryColor="AliceBlue"
    2 BackColor="WhiteSmoke">
    3 <Legends>
    4 <asp:Legend Name="Legend1" Alignment="Near">
    5 </asp:Legend>
    6 </Legends>
    7 <Series>
    8 <asp:Series Name="Series1" ChartType="Pie" Font="Arial">
    9 </asp:Series>
    10 </Series>
    11 <ChartAreas>
    12 <asp:ChartArea Name="ChartArea1">
    13 </asp:ChartArea>
    14 </ChartAreas>
    15 </asp:Chart>
    复制代码

    后台代码:(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:ChartChart_" + 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);

    来源:http://www.cnblogs.com/eva_2010/archive/2011/12/12/2284919.html

  • 相关阅读:
    新家开始了
    FreeMarker过时的方法 new Configuration()
    基于Spring封装的Javamail实现邮件发送
    Spring中PropertiesLoaderUtils应用
    SpringBoot基于数据库的定时任务统一管理
    ActiveMQ点对点模式
    springboot整合swagger2
    dubbo简单示例
    SpringCLoud之搭建Zuul网关集群
    微服务项目框架搭建
  • 原文地址:https://www.cnblogs.com/captain_ccc/p/4182007.html
Copyright © 2011-2022 走看看