本文代码是基于beta2开发
越来越多的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.最后回收资源。
至此画饼图的类就完成了。画条形图的方法和画饼图的方法大同小异,这里就不展开讲了。
总体看来,构建画图的类没有我们想象的那样难,并没有多么高深的算法。其实整体思路,就好像我们用笔在纸上画图是一摸一样的。关键是各个方法的使用和参数设置。
本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。