zoukankan      html  css  js  c++  java
  • asp.net绘统计图

    asp.net绘图 越来越多的web应用需要使用图表来进行数据显示和分析。例如:投票结果显示,公司生产情况统计图显示分析等等。利用图表来显示数据,具有直观,清晰等好处。
    传统的asp技术是不支持画图表的,那么就不得不利用active x或java applets来实现这个功能。新近出现的asp.net解决了这个问题,只要利用asp.net中关于图像显示的类,就能画出丰富,动态的图表(如图1)。本文将要讲述怎么利用asp.net技术结合ado.net技术画条形图和饼图。
       图1
      
    首先建立一个c#的类库。
    打开vs.net,建立一个名为insight_cs.webcharts新的类库工程,将解决方案的名称改为insight,将class.cs文件名改为insight_cs.webcharts.cs,最后打开insight_cs.webcharts.cs文件。其中代码如下:
    /*自定义类,通过输入不同的参数,这些类能画不同的图像 */
      
    using system;
    using system.io;//用于文件存取
    using system.data;//用于数据访问
    using system.drawing;//提供画gdi+图像的基本功能
    using system.drawing.text;//提供画gdi+图像的高级功能
    using system.drawing.drawing2d;//提供画高级二维,矢量图像功能
    using system.drawing.imaging;//提供画gdi+图像的高级功能
    namespace insight_cs.webcharts
    {
       public class piechart
       {
       public piechart()
       {
       }
       public void render(string title, string subtitle, int width, int height, dataset chartdata, stream target)
       {
       const int side_length = 400;
       const int pie_diameter = 200;
       datatable dt = chartdata.tables[0];
      
       //通过输入参数,取得饼图中的总基数
       float sumdata = 0;
       foreach(datarow dr in dt.rows)
       {
       sumdata += convert.tosingle(dr[1]);
       }
       //产生一个image对象,并由此产生一个graphics对象
       bitmap bm = new bitmap(width,height);
       graphics g = graphics.fromimage(bm);
       //设置对象g的属性
       g.scaletransform((convert.tosingle(width))/side_length,(convert.tosingle(height))/side_length);
       g.smoothingmode = smoothingmode.default;
       g.textrenderinghint = textrenderinghint.antialias;
      
       //画布和边的设定
       g.clear(color.white);
       g.drawrectangle(pens.black,0,0,side_length-1,side_length-1);
       //画饼图标题
       g.drawstring(title,new font("tahoma",24),brushes.black,new pointf(5,5));
       //画饼图的图例
       g.drawstring(subtitle,new font("tahoma",14),brushes.black,new pointf(7,35));
       //画饼图
       float curangle = 0;
       float totalangle = 0;
       for(int i=0;i<dt.rows.count;i++)
       {
       curangle = convert.tosingle(dt.rows[i][1]) / sumdata * 360;
      
       g.fillpie(new solidbrush(chartutil.getchartitemcolor(i)),100,65,pie_diameter,pie_diameter,totalangle,curangle);
       g.drawpie(pens.black,100,65,pie_diameter,pie_diameter,totalangle,curangle);
       totalangle += curangle;
       }
       //画图例框及其文字
       g.drawrectangle(pens.black,200,300,199,99);
       g.drawstring("legend",new font("tahoma",12,fontstyle.bold),brushes.black,new pointf(200,300));
      
       //画图例各项
       pointf boxorigin = new pointf(210,330);
       pointf textorigin = new pointf(235,326);
       float percent = 0;
       for(int i=0;i<dt.rows.count;i++)
       {
       g.fillrectangle(new solidbrush(chartutil.getchartitemcolor(i)),boxorigin.x,boxorigin.y,20,10);
       g.drawrectangle(pens.black,boxorigin.x,boxorigin.y,20,10);
       percent = convert.tosingle(dt.rows[i][1]) / sumdata * 100;
       g.drawstring(dt.rows[i][0].tostring() + " - " + dt.rows[i][1].tostring() + " (" + percent.tostring("0") + "%)",new font("tahoma",10),brushes.black,textorigin);
       boxorigin.y += 15;
       textorigin.y += 15;
       }
       //通过response.outputstream,将图像的内容发送到浏览器
       bm.save(target, imageformat.gif);
       //回收资源
       bm.dispose();
       g.dispose();
       }
       }
      
    //画条形图
       public class barchart
       {
       public barchart()
       {
       }
       public void render(string title, string subtitle, int width, int height, dataset chartdata, stream target)
       {
       const int side_length = 400;
       const int chart_top = 75;
       const int chart_height = 200;
       const int chart_left = 50;
       const int chart_width = 300;
       datatable dt = chartdata.tables[0];
      
       //计算最高的点
       float highpoint = 0;
       foreach(datarow dr in dt.rows)
       {
       if(highpoint<convert.tosingle(dr[1]))
       {
       highpoint = convert.tosingle(dr[1]);
       }
       }
       //建立一个graphics对象实例
       bitmap bm = new bitmap(width,height);
       graphics g = graphics.fromimage(bm);
       //设置条图图像和文字属性
       g.scaletransform((convert.tosingle(width))/side_length,(convert.tosingle(height))/side_length);
       g.smoothingmode = smoothingmode.default;
       g.textrenderinghint = textrenderinghint.antialias;
      
       //设定画布和边
       g.clear(color.white);
       g.drawrectangle(pens.black,0,0,side_length-1,side_length-1);
       //画大标题
       g.drawstring(title,new font("tahoma",24),brushes.black,new pointf(5,5));
       //画小标题
       g.drawstring(subtitle,new font("tahoma",14),brushes.black,new pointf(7,35));
       //画条形图
       float barwidth = chart_width / (dt.rows.count * 2);
       pointf barorigin = new pointf(chart_left + (barwidth / 2),0);
       float barheight = dt.rows.count;
       for(int i=0;i<dt.rows.count;i++)
       {
       barheight = convert.tosingle(dt.rows[i][1]) * 200 / highpoint;
       barorigin.y = chart_top + chart_height - barheight;
       g.fillrectangle(new solidbrush(chartutil.getchartitemcolor(i)),barorigin.x,barorigin.y,barwidth,barheight);
       barorigin.x = barorigin.x + (barwidth * 2);
       }
       //设置边
       g.drawline(new pen(color.black,2),new point(chart_left,chart_top),new point(chart_left,chart_top + chart_height));
       g.drawline(new pen(color.black,2),new point(chart_left,chart_top + chart_height),new point(chart_left + chart_width,chart_top + chart_height));
       //画图例框和文字
       g.drawrectangle(new pen(color.black,1),200,300,199,99);
       g.drawstring("legend",new font("tahoma",12,fontstyle.bold),brushes.black,new pointf(200,300));
      
       //画图例
       pointf boxorigin = new pointf(210,330);
       pointf textorigin = new pointf(235,326);
       for(int i=0;i<dt.rows.count;i++)
       {
       g.fillrectangle(new solidbrush(chartutil.getchartitemcolor(i)),boxorigin.x,boxorigin.y,20,10);
       g.drawrectangle(pens.black,boxorigin.x,boxorigin.y,20,10);
       g.drawstring(dt.rows[i][0].tostring() + " - " + dt.rows[i][1].tostring(),new font("tahoma",10),brushes.black,textorigin);
       boxorigin.y += 15;
       textorigin.y += 15;
       }
       //输出图像
       bm.save(target, imageformat.gif);
      
       //资源回收
       bm.dispose();
       g.dispose();
       }
       }
       public class chartutil
       {
       public chartutil()
       {
       }
       public static color getchartitemcolor(int itemindex)
       {
       color selectedcolor;
       switch(itemindex)
       {
       case 0:
       selectedcolor = color.blue;
       break;
       case 1:
       selectedcolor = color.red;
       break;
       case 2:
       selectedcolor = color.yellow;
       break;
       case 3:
       selectedcolor = color.purple;
       break;
       default:
       selectedcolor = color.green;
       break;
       }
       return selectedcolor;
       }
       }
    }
      
    代码分析:
    1.引入一些namespace
    using system;
    using system.io;//用于文件存取
    using system.data;//用于数据访问
    using system.drawing;//提供画gdi+图像的基本功能
    using system.drawing.text;//提供画gdi+图像的高级功能
    using system.drawing.drawing2d;//提供画高级二维,矢量图像功能
    using system.drawing.imaging;//提供画gdi+图像的高级功能
    这些namespace将在后面被应用。
    2.自定义一个namespace为insight_cs.webcharts,其中包括了两个类piechart和barchart,非常清晰,class piechart是为画饼图而建,class barchart是为画条形图而建。由于class piechart和class barchar差不多,所以下面我们以饼图为例,进行代码分析。
    3.类piechart建立一个方法render,此方法能含一些参数。简单说明如下:
    参数title,表示饼图上方的大标题文字。
    参数subtitle,表示饼图上方的小标题文字。
    参数width,height,表示了整个图像的大小。
    参数chardata是个dataset对象实例,用于画图使用。
    参数target是stream对象的实例,用于图像输出时使用。
    4.为了增加可读性,定义一些常量:
    const int side_length = 400;//画布边长
    const int pie_diameter = 200;//饼图直径
    5.定义一个datatable,他是dataset中的一个数据表。其中存放了饼图的各个数据。
    6.通过计算,得出饼图中的总基数sumdata。
    7.建立了一个bitmap对象,他为要创建的图像提供了内存空间。并由此产生一个graphics对象,他封装了gdi+画图接口。
    8.调用graphics对象的方法scaletransform(),他是用来设定图像比例的。
    9.调用方法smoothingmode(),textrenderinghint()等来设置文字和图像的相关属性。
    9.设置画布和边。
    10.设置文字标题,图例,画饼图自身。
    11.通过stream,将图像的内容发送到浏览器。
    12.最后回收资源。
      
    至此画饼图的类就完成了。画条形图的方法和画饼图的方法大同小异,这里就不展开讲了。
    总体看来,构建画图的类没有我们想象的那样难,并没有多么高深的算法。其实整体思路,就似乎我们用笔在纸上画图是一摸相同的。关键是各个方法的使用和参数设置。

    我们在前面已完成了饼图和条形图的自定义类,下面我们将要应用这些类了。
    使用vs.net新建一个名为insight_cs的web应用程式,并且添加到刚才的insight工程中。删除默认的webform1.aspx文件,新建一个名为saleschart.aspx文件。打开此文件,在代码模式下,将第一行替换为:
    <%@ page contenttype="image/gif" language="c#" autoeventwireup="false" codebehind="saleschart.aspx.cs" inherits="insight_cs.saleschart" %>
    打开文件saleschart.aspx.cs,其中代码如下所示:
    using system;
    using system.data;
    using system.web;
    using system.io;
    using system.data.sqlclient;
    using insight_cs.webcharts;//这是自定义的名字空间
    namespace insight_cs
    {
       public class saleschart : system.web.ui.page
       {
       public saleschart()
       {
       page.init += new system.eventhandler(page_init);
       }
       private void page_load(object sender, system.eventargs e)
       {
       //从数据库中取得数据,用于画图
       string sql = "select " +"year(sa.ord_date) as [year], " +"sum(sa.qty) as [qty] " +"from " +"sales sa " +"inner join stores st on(sa.stor_id = st.stor_id) " +"group by " +"year(sa.ord_date) " + "order by " + "[year]";
       string connectstring = "password=ben; user id=sa; database=pubs;data source=localhost";
       sqldataadapter da = new sqldataadapter(sql,connectstring);
       dataset ds = new dataset();
       int rows = da.fill(ds,"chartdata");
       //设定产生图的类型(pie or bar)
       string type = "";
       if(null==request["type"])
       {
       type = "pie";
       }
       else
       {
       type = request["type"].tostring().toupper();
       }
       //设置图大小
       int width = 0;
       if(null==request["width"])
       {
       width = 400;
       }
       else
       {
       width = convert.toint32(request["width"]);
       }
       int height = 0;
       if(null==request["height"])
       {
       height = 400;
       }
       else
       {
       height = convert.toint32(request["height"]);
       }
       //设置图表标题
       string title = "";
       if(null!=request["title"])
       {
       title = request["title"].tostring();
       }
       string subtitle = "";
       if(null!=request["subtitle"])
       {
       subtitle = request["subtitle"].tostring();
       }
       if(0<rows)
       {
       switch(type)
       {
       case "pie":
       piechart pc = new piechart();
       pc.render(title,subtitle,width,height,ds,response.outputstream);
       break;
       case "bar":
       barchart bc = new barchart();
       bc.render(title,subtitle,width,height,ds,response.outputstream);
       break;
       default:
      
       break;
       }
       }
       }
       private void page_init(object sender, eventargs e)
       {
       //
       // codegen: this call is required by the asp.net web form designer.
       //
       initializecomponent();
       }
       #region web form designer generated code
       /// <summary>
       /// required method for designer support - do not modify
       /// the contents of this method with the code editor.
       /// </summary>
       private void initializecomponent()
       {
       this.load += new system.eventhandler(this.page_load);
       }
       #endregion
       }
    }
    以上的代码并没有什么难的,这里就不做分析了。
    在vs.net中,打开insight_cs solution,右击”引用“,将出现”添加引用“,将组件文件insight_cs.webcharts.dll加入,使其成为项目中的namespace。
    下面我们就能浏览结果了。
    首先建立一个demochart.aspx文件,在其代码中,加入一下内容:
    <img alt="sales data - pie"
    src="saleschart.aspx?type=pie&width=300&height=30
    0&title=sales+by+year&subtitle=books">
    <img alt="sales data - bar"
    src="saleschart.aspx?type=bar&width=300&height=30
    0&title=sales+by+year&subtitle=books">
    type表示显示图像的类型,是饼图pie,还是条形图bar。
    width,height表示图像的大小。
    title表示大标题文字。
    subtitle表示小标题文字。
    其结果显示如图1(图片在文章《asp.net画图全攻略(上)》)。
      
    由此,我们完成了利用asp.net技术画图的过程。
    综合起来,能总结出以下几点:1.利用asp.net技术,能在不使用第三方组件的情况下,画出最佳的图像。2.画图核心是构造一个bitmap(位图)对象,他为要创建的图像提供了内存空间。然后,利用有关namespace提供的类和方法画出图像。最后就能调用bitmap对象的“save”方法,将其发送到所有.net的输出流中,这里是直接将图像的内容发送到浏览器,而没有将其保存到磁盘中。

  • 相关阅读:
    javascript:history.go()和History.back()的区别
    Web 开发] 定制IE下载对话框的按钮(打开/保存)(转)
    JavaScript 浮动定位提示效果(转)
    关于网页*静态化*及SEO问题的一些补充(转)
    httpanalyzer 结合 HttpWebRequest Post的运用
    SEO工具大全(转)
    导出excel
    Asp.NET导出Excel文件乱码解决若干方法 (转)
    关于DataBinder.Eval Eval Bind
    电脑疑似中毒
  • 原文地址:https://www.cnblogs.com/juexin/p/2725600.html
Copyright © 2011-2022 走看看