欢迎光临
我们一直在努力

在ASP.NET页面中实现数据棒图-.NET教程,Asp.Net开发

建站超值云服务器,限时71元/月

棒图有时又称为”bar”图。在我的上一篇文章《在asp.net实现数据图表》中已经介绍了在浏览器看到的图表,一般都是图片文件。那么在asp.net中是否也可以生成这些图表?答案是肯定的,因为在asp.net中拥有了一个新功能–绘图功能,通过此功能就能够按照要实现的图表的模样来绘制,最后在客户端的浏览器中形成一个图片,从而显示出图表来。

  本文就在上一篇文章的基础上,进一步介绍在asp.net页面中实现bar图的具体方法。希望本篇文章不仅能够让您领会到asp.net中强大的绘图功能,更希望能够弥补上一篇文章的一个缺憾,就是上一篇实现的图表的数据来自固定数值,而我们知道图表只有在和数据库关联以后,才能够显示出更强大的优势。下面就来介绍在asp.net页面中从数据库中提起数据,并以此数据形成bar图的具体实现方法。

  一.本文程序设计和运行的软件环境:

  (1).微软公司视窗2000服务器版。

  (2).visual studio .net正式版,.net framework sdk版本号3705。

  (3).mdac 2.6(microsoft data acess component)以上版本。

  二.建立数据源

  为了方便起见,本文选择的数据库类型为本地数据库–access 2000,如果你使用的是其他数据库类型,只需对下面介绍的程序中的关于数据库连接的代码进行相应的修改就可以了。access数据库名称为”db.mdb”,在此数据库中只定义了一张数据表”table01″,此表的结构如表01所示:

字段名称 类型 说明
id 自动编号 主键 ,递增
yf 数字 销售月份
sl 数字 销量

         表01:table01数据表的结构

  在定义完”db.mdb”数据库中的”table01″数据表后,在table01数据表中按照表02所示添加记录:

id yf sl
1 1 12
2 2 5
3 3 7
4 4 20
5 5 16
6 6 10
7 7 19
8 8 8
9 9 7
10 10 13
11 11 11
12 12 15

      表02:table01数据表中的记录情况

  在table01数据表中添加完这12条记录后,保存”db.mdb”数据库到c盘的根目录中。

  三.asp.net页面中实现数据bar图的关键步骤及其实现方法:

  在asp.net页面中实现数据bar图首先必须解决二大问题:

  (1).首先要解决在asp.net页面中实现数据库连接和从数据库中读取数据的方法。

  程序要实现从数据库中一条条的读取数据,则要使用oledbdatareader类,oledbdatareader类提供了从数据库中逐条读取数据的方法。下面代码是连接c盘根目录下的”db.mdb”数据库,逐条读取table01数据表中的记录,并把数据存放到定义的二个数组中:

string srouter = “c:\\db.mdb” ;
//获得当前access数据库在服务器端的绝对路径
string strcon = ” provider = microsoft.jet.oledb.4.0; data source = ” + srouter ;
//创建一个数据库连接
oledbconnection myconn = new oledbconnection ( strcon ) ;
string strcom = ” select yf ,sl from table01 order by yf” ;
myconn.open ( ) ;
oledbcommand mycommand = new oledbcommand ( strcom , myconn ) ;
oledbdatareader myoledbdatareader = mycommand.executereader ( ) ;
//创建oledbdatareader实例,并以此实例来获取数据库中各条记录数据
int [ ] ixiaosh = new int [ 12 ] ;
//定义一个数组,用以存放从数据库中读取的销售数据
string [ ] smoth = new string [ 12 ] ;
//定义一个数组,用以存放从数据库中读取的销售月份
int iindex = 0 ;
while ( myoledbdatareader.read ( ) )
{
 ixiaosh [ iindex ] = myoledbdatareader.getint32 ( 1 ) ;
 smoth [ iindex ] = myoledbdatareader.getint32 ( 0 ) . tostring ( ) + “月” ;
 iindex++ ;
}
//读取table01数据表中的各条数据,并存放在先前定义的二个数组中
myconn . close ( ) ;
myoledbdatareader . close ( ) ;
//关闭各种资源

  (2).根据得到数据,绘制图片,并显示出来:

  通过第一步,已经把从数据库中的读取的数据存放到”ixiaosh”和”smoth”数组中。下面就要解决依据这些数据绘制出bar图?首先先了解一下在asp.net页面中将要实现的数据bar图的模样。具体可如图01所示:

    图01:在asp.net中实现的数据bar图

  程序中把图01所示各个元素,按照区域分成了五个部分,这五个部分将在后面介绍的程序中分别实现:

  1. 构建整个图片

  首先要创建一bitmap实例,并以此来构建一个graphics实例,graphics实例提供了各种绘制方法,这样才能按照数据的要求在bitmap实例上绘制各种图形。下面代码是在asp.net中创建bitmap实例,并以此实例来构建 graphics实例的具体方法:

bitmap bm = new bitmap ( 600 , 250 ) ;
//创建一个长度为600,宽带为250的bitmap实例
graphics g ;
g = graphics.fromimage ( bm ) ;
//由此bitmap实例创建graphic实例
g . clear ( color . snow ) ;
//用snow色彩为背景色填充此绘画图面

  2. 图01中的标题部分文字:

  这是通过graphics实例中提供的drawstring方法以指定的字体、颜色、在指定的位置绘制指定的字符串。下面代码的作用是绘制图01中标题:

g . drawstring ( ” ××公司××器件2002年度销售情况一览表” , new font ( “宋体” , 16 ) , brushes . black , new point ( 5 , 5 ) ) ;
//在绘画图面的指定位置,以指定的字体、指定的颜色绘制指定的字符串。即为图表标题

  3. 图01中的提示区域,即图01中的右上角显示的内容:

  要绘制这部分内容首先要定位,可以把这部分要绘制的内容分成三个小部分:

  其一,是图01中的”单位:万套”文字,这部分处理起来比较简单,当选定要在图片中输出的文字坐标后,调用graphics实例中提供的drawstring方法就可以了;
  
  其二,是绘制图01中的小方块,首先要调用graphics实例中的drawrectangle方法在指定位置,以指定的颜色,绘制指定大小的方块,然后再条约graphics实例中的fillrectangle填充这个小方块就完成了;

  其三,是绘制小方块右边的文字。同样要使用graphics实例中提供的drawstring方法,只不过位置坐标和字体要进行相应改变罢了。下面代码功能是绘制图01右上角显示的内容:

point myrec = new point ( 535 , 30 ) ;
point mydec = new point ( 560 , 26 ) ;
//以上是在图01中为下面绘制定位
g . drawstring ( “单位:万套” , new font ( “宋体” , 9 ) , brushes . black , new point ( 525 , 12 ) ) ;
for ( int i = 0 ; i < smoth.length ; i++ )
{
g . drawrectangle ( pens.black , myrec . x , myrec . y , 20 , 10 ) ;
//绘制小方块
g . fillrectangle ( new solidbrush ( getcolor ( i ) ) , myrec . x , myrec . y , 20 , 10 ) ;
//填充小方块
g . drawstring ( smoth [ i ] . tostring ( ) , new font ( “宋体” , 9 ) , brushes . black , mydec ) ;
//绘制小方块右边的文字
myrec . y += 15 ;
mydec . y += 15 ;
}

  4. 根据从数据库中读取的数据,绘制数据bar图:

  此部分与第三部分比较类似,最主要的区别在于,绘制的位置不相同,下面代码是在图01中绘制数据bar图,并提示bar图所代表的数量:

int ibarwidth = 40 ;
int scale = 10 ;
for ( int i = 0 ; i < ixiaosh . length ; i++ )
{
g . drawrectangle ( pens.black , ( i * ibarwidth ) + 15 , 250 – ( ixiaosh [ i ] * scale ) , 20 , ( ixiaosh [ i ] * scale ) + 5 ) ;
//绘制bar图
g . fillrectangle ( new solidbrush ( getcolor ( i ) ) , ( i * ibarwidth ) + 15 , 250 – ( ixiaosh [ i ] * scale ) , 20 , ( ixiaosh [ i ] * scale ) + 5 ) ;
//以指定的色彩填充bar图
g . drawstring ( ixiaosh [ i ] . tostring ( ) , new font ( “宋体” , 9 ) , brushes . black , ( i * ibarwidth ) + 20 , 235 – ( ixiaosh [ i ] * scale ) ) ;
//显示bar图代表的数据
}

  5. 绘制图片边框,并形成jpeg文件格式在客户端显示:

  绘制图片边框,使用的graphics实例中的drawrectangle方法。至于采用jpeg格式文件在客户端显示,是因为jpeg文件占用的空间较小,利于网络传送。下面代码是绘制图01中的边框,并形成jpeg文件:

pen p = new pen ( color.black , 2 ) ;
g . drawrectangle ( p , 1 , 1 , 598 , 248 ) ;
bm.save ( response . outputstream , imageformat . jpeg ) ;

  四.asp.net页面中实现数据bar图实现步骤:

  掌握了上面的关键步骤及其解决方法后,在asp.net实现数据bar相对就容易许多了,下面是asp.net页面中实现数据bar图的具体实现步骤,在开发工具上选用的是visual stuido .net企业构建版,采用的开发语言是c#。

  1. 启动visual studio .net

  2. 选择菜单【文件】|【新建】|【项目】后,弹出【新建项目】对话框

  3. 将【项目类型】设置为【visual c#项目】

  4. 将【模板】设置为【asp.net web 应用程序】

  5. 在【位置】的文本框中输入”http://localhost/bar”。然后单击【确定】按钮,这样在visual studio .net就会在当前项目文件所在目录中建立一个名称为”bar”文件夹,里面存放是此项目的项目文件,项目中的其他文件存放的位置是计算机internet信息服务的默认的web站点所在的目录中新建的一个名称为”bar”的文件夹中。具体如图02所示:

      图02:新建一个asp.net项目对话框

  6. 把visual studio .net的当前窗口切换到webform的代码编辑窗口,即:webform1.aspx.cs文件的编辑窗口。

  7. 在webform1.aspx.cs文件首部,用下列代码替换webform1.aspx.cs中导入命名空间的代码:

using system ;
using system . collections ;
using system . componentmodel ;
using system . data ;
using system . drawing ;
using system . web ;
using system . web . sessionstate ;
using system . web . ui ;
using system . web . ui . webcontrols ;
using system . web . ui . htmlcontrols ;
using system . drawing . imaging ;
//下面程序中使用的imageformat类所在的命名空间
using system . data . oledb ;
//下面程序中使用到关于数据库方面的类所在的命名空间

  8. webform1.aspx.cs文件中的page_load事件处理代码中添加下列代码,下列代码的作用是打开数据库,读取数据,并以此数据形成数据bar图:

string srouter = “c:\\db.mdb” ;
//获得当前access数据库在服务器端的绝对路径
string strcon = ” provider = microsoft.jet.oledb.4.0; data source = ” + srouter ;
//创建一个数据库连接
oledbconnection myconn = new oledbconnection ( strcon ) ;
string strcom = ” select yf ,sl from table01 order by yf” ;
myconn.open ( ) ;
oledbcommand mycommand = new oledbcommand ( strcom , myconn ) ;
oledbdatareader myoledbdatareader = mycommand.executereader ( ) ;
//创建oledbdatareader实例,并以此实例来获取数据库中各条记录数据
int [ ] ixiaosh = new int [ 12 ] ;
//定义一个数组,用以存放从数据库中读取的销售数据
string [ ] smoth = new string [ 12 ] ;
//定义一个数组,用以存放从数据库中读取的销售月份
int iindex = 0 ;
while ( myoledbdatareader.read ( ) )
{
ixiaosh [ iindex ] = myoledbdatareader.getint32 ( 1 ) ;
smoth [ iindex ] = myoledbdatareader.getint32 ( 0 ) . tostring ( ) + “月” ;
iindex++ ;
}
//读取table01数据表中的各条数据,并存放在先前定义的二个数组中
myconn . close ( ) ;
myoledbdatareader . close ( ) ;
//关闭各种资源
bitmap bm = new bitmap ( 600 , 250 ) ;
//创建一个长度为600,宽带为250的bitmap实例
graphics g ;
g = graphics.fromimage ( bm ) ;
//由此bitmap实例创建graphic实例
g . clear ( color . snow ) ;
//用snow色彩为背景色填充此绘画图面
g . drawstring ( ” ××公司××器件2002年度销售情况一览表” , new font ( “宋体” , 16 ) , brushes . black , new point ( 5 , 5 ) ) ;
//在绘画图面的指定位置,以指定的字体、指定的颜色绘制指定的字符串。即为图表标题
//以下代码是是实现图01中的右上部
point myrec = new point ( 535 , 30 ) ;
point mydec = new point ( 560 , 26 ) ;
//以上是在图01中为下面绘制定位
g . drawstring ( “单位:万套” , new font ( “宋体” , 9 ) , brushes . black , new point ( 525 , 12 ) ) ;
for ( int i = 0 ; i < smoth.length ; i++ )
{
g . drawrectangle ( pens.black , myrec . x , myrec . y , 20 , 10 ) ;
//绘制小方块
g . fillrectangle ( new solidbrush ( getcolor ( i ) ) , myrec . x , myrec . y , 20 , 10 ) ;
//填充小方块
g . drawstring ( smoth [ i ] . tostring ( ) , new font ( “宋体” , 9 ) , brushes . black , mydec ) ;
//绘制小方块右边的文字
myrec . y += 15 ;
mydec . y += 15 ;
}
//以下代码是绘制图01中的bar图,及其销售数量
int ibarwidth = 40 ;
int scale = 10 ;
for ( int i = 0 ; i < ixiaosh . length ; i++ )
{
g . drawrectangle ( pens.black , ( i * ibarwidth ) + 15 , 250 – ( ixiaosh [ i ] * scale ) , 20 , ( ixiaosh [ i ] * scale ) + 5 ) ;
//绘制bar图
g . fillrectangle ( new solidbrush ( getcolor ( i ) ) , ( i * ibarwidth ) + 15 , 250 – ( ixiaosh [ i ] * scale ) , 20 , ( ixiaosh [ i ] * scale ) + 5 ) ;
//以指定的色彩填充bar图
g . drawstring ( ixiaosh [ i ] . tostring ( ) , new font ( “宋体” , 9 ) , brushes . black , ( i * ibarwidth ) + 20 , 235 – ( ixiaosh [ i ] * scale ) ) ;
//显示bar图代表的数据
}
//以下代码是绘制图01中的边框,并形成jpeg文件,供浏览器显示出来
pen p = new pen ( color.black , 2 ) ;
g . drawrectangle ( p , 1 , 1 , 598 , 248 ) ;
bm.save ( response . outputstream , imageformat . jpeg ) ;

  9. webform1.aspx.cs文件中的initializecomponent过程之后,添加下列代码,下列代码的作用是定义一个名称为getcolor函数,此函数的功能根据索引号得到相应的系统颜色:

private color getcolor ( int itemindex )
{
 color mycolor ;
 int i = itemindex ;
 switch ( i )
 {
  case 0 :
   mycolor = color . cornsilk ;
   return mycolor ;
  case 1 :
   mycolor = color . red ;
   return mycolor ;
  case 2 :
   mycolor = color . yellow ;
   return mycolor ;
  case 3 :
   mycolor = color . peru ;
   return mycolor ;
  case 4 :
   mycolor = color . orange ;
   return mycolor ;
  case 5 :
   mycolor = color . coral ;
   return mycolor ;
  case 6:
   mycolor = color . gray ;
   return mycolor ;
  case 7:
   mycolor = color . maroon ;
   return mycolor ;
  case 8:
   mycolor = color . azure ;
   return mycolor ;
  case 9:
   mycolor = color.aliceblue ;
   return mycolor ;
  case 10:
   mycolor = color . bisque ;
   return mycolor ;
  case 11:
   mycolor = color . burlywood ;
   return mycolor ;
  case 12:
   mycolor = color . chartreuse ;
   return mycolor ;
  default:
   mycolor = color . green ;
   return mycolor ;
 }
}

  10. 至此,在上述步骤都正确执行后,在asp.net页面中实现数据bar图的全部工作就完成了。在确定上面建立的access数据库”db.mdb”位于c盘的根目录中之后,单击快捷键f5,就可以得到如图01所示的数据bar图了。

  五.总结:

  在asp.net页面中实现各种图表,其所使用的就是asp.net的绘图功能,而这一功能是asp.net的前一个版本所不具备的。上面的这些介绍,不仅介绍了在asp.net绘制各种图片的方法,还介绍了数据库连接和从数据库中逐条读取记录的方法。这些方法对您了解和掌握在asp.net中操作数据库是非常有用的。在下一篇文章中,将介绍浏览器中经常看到的另外一种图表–饼图,在asp.net页面中的实现方法。如果您感兴趣,那就让我们下一讲再见吧!

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在ASP.NET页面中实现数据棒图-.NET教程,Asp.Net开发
分享到: 更多 (0)