首 页 ┆ 源码下载 ┆ IT学院 ┆ 字体下载 ┆ 模板下载 ┆ 源码发布 ┆ 广告合作 ┆ 网站地图 ┆ 虚拟主机 ┆ 中文域名
► 设为首页
► 加入收藏
► 联系我们
源码下载 >> ASP源码 | PHP源码 | ASP.net源码 | JSP源码 | CGI源码 | VC/C++源码 | VB源码 | Delphi源码 | Flash源码
文章学院 >> 网络编程 | 网页设计 | 图形图象 | 数据库 | 服务器 | 网络媒体 | 网络安全 | 操作系统 | 办公软件 | 软件开发 | 黑客知识
字体下载 >> 精制字体 | 非英字体 | 艺术字体 | 著名字体 | 哥特式 | 简单字体 | 手写体 | 节假日 | 图案字体 | 精度像素 | 中文字体
模板下载 >> 企业门户 | 数码网络 | 休闲娱乐 | 影视音乐 | 旅游名胜 | 文化艺术 | 电子商务 | 个性展示 | 登陆导航 | Flash模板
►►您当前的位置:源码园 → IT学院 → 网络编程 → ASP专区 → 文章内容

用ASP生成Chart

作者:无从考证  来源:学习在线  发布时间:2007-2-6 12:58:17
糞CRIPT LANGUAGE="VBScript" RUNAT="SERVER">
function makechart(title, numarray, labelarray, color, bgcolor, bordersize, maxheight, maxwidth, addvalues)
Function makechart version 3

Jason Borovoy
title: Chart Title
numarray: An array of values for the chart
labelarray: An array of labels coresponding to the values must me present
color If null uses different colors for bars if not null all bars color you specify
bgcolor Background color.
bordersize: border size or 0 for no border.
maxheight: maximum height for chart not including labels
maxwidth: width of each column
addvalues: true or false depending if you want the actual values shown on the chart
when you call the function use : response.write makechart(parameters)

actually returnstring would be a better name
dim tablestring
max value is maximum table value
dim max
maxlength maximum length of labels
dim maxlength
dim tempnumarray
dim templabelarray
dim heightarray
Dim colorarray
value to multiplie chart values by to get relitive size
Dim multiplier
if data valid
if maxheight > 0 and maxwidth > 0 and ubound(labelarray) = ubound(numarray) then
colorarray: color of each bars if more bars then colors loop through
if you dont like my choices change them, add them, delete them.
colorarray = array("red","blue","yellow","navy","orange","purple","green")
templabelarray = labelarray
tempnumarray = numarray
heightarray = array()
max = 0
maxlength = 0
tablestring = "<TABLE bgcolor=" & bgcolor & " border=" & bordersize & ">" & _
"<tr><td><TABLE border=0 cellspacing=1 cellpadding=0>" & vbCrLf
get maximum value
for each stuff in tempnumarray
if stuff > max then max = stuff end if
next
calculate multiplier
multiplier = maxheight/max > populate array
for counter = 0 to ubound(tempnumarray)
if tempnumarray(counter) = max then
redim preserve heightarray(counter)
heightarray(counter) = maxheight
else
redim preserve heightarray(counter)
heightarray(counter) = tempnumarray(counter) * multiplier
end if
next


set title
tablestring = tablestring & "<TR><TH colspan=" & ubound(tempnumarray)+1 & ">" & _
"<FONT FACE=Verdana, Arial, Helvetica SIZE=1><U>" & title & "</TH></TR>" & _
vbCrLf & "<TR>" & vbCrLf
loop through values
for counter = 0 to ubound(tempnumarray)
tablestring = tablestring & vbTab & "<TD valign=bottom align=center >" & _
"<FONT FACE=Verdana, Arial, Helvetica SIZE=1>" & _
"<table border=0 cellpadding=0 width=" & maxwidth & "><tr>" & _
"<tr><td valign=bottom bgcolor="
if not isNUll(color) then
if color present use that color for bars
tablestring = tablestring & color
else
if not loop through colorarray
tablestring = tablestring & colorarray(counter mod (ubound(colorarray)+1))
end if
tablestring = tablestring & " height=" & _
round(heightarray(counter),2) & "><img src=http://edu.chinaz.com/Get/Program/Asp/chart.gif width=1 height=1>" & _
"</td></tr></table>"
if addvalues then
print actual values
tablestring = tablestring & "<BR>" & tempnumarray(counter)
end if
tablestring = tablestring & "</TD>" & vbCrLf
next

tablestring = tablestring & "</TR>" & vbCrLf
calculate max lenght of labels
for each stuff in labelarray
if len(stuff) >= maxlength then maxlength = len(stuff)
next
print labels and set each to maxlength
for each stuff in labelarray
tablestring = tablestring & vbTab & "<TD align=center><" & _
"FONT FACE=Verdana, Arial, Helvetica SIZE=1><B> "
for count = 0 to round((maxlength - len(stuff))/2)
tablestring = tablestring & " "
next
if maxlength mod 2 <> 0 then tablestring = tablestring & " "
tablestring = tablestring & stuff
for count = 0 to round((maxlength - len(stuff))/2)
tablestring = tablestring & " "
next
tablestring = tablestring & " </TD>" & vbCrLf
next

tablestring = tablestring & "</TABLE></td></tr></table>" & vbCrLf
makechart = tablestring
else
Response.Write "Error Function Makechart: maxwidth and maxlength have to be greater " & _
" then 0 or number of labels not equal to number of values"
end if
end function


dim stuff
dim labelstuff
Demo 1
stuff = Array(5,30)
labelstuff = Array("北京", "广州")
Response.Write makechart("Demo 1", stuff, labelstuff, null, "gold",10, 50,40,true)

</SCRIPT>
[] [返回上一页] [打 印]
  • 上一篇文章:用ASP编写图片计数器
  • 下一篇文章:用ASP构建你的网站新闻发布(一)

  • 相关文章:
  • 在PHP中使用ASP.NET AJAX
  • 用ASP.NET(VB版)创建WINDOWS 2000 SERVER站点
  • 在Web Service中使用ASP.net状态保持(6)
  • 在Web Service中使用ASP.net状态保持(5)
  • 在Web Service中使用ASP.net状态保持(4)
  • 在Web Service中使用ASP.net状态保持(3)
  • 在Web Service中使用ASP.net状态保持(2)
  • 在Web Service中使用ASP.net状态保持(1)
  • 利用ASP实现TCP端口扫描--利用,ASP,实现,TCP,端口,扫...
  • 一次用ASP页面漏洞引发的渗透攻击--ASP,页面漏洞,引...
  • [图文]使用ASP建设百度知道,新浪爱问,雅虎知识堂搜...
  • 用ASP实现反向连接控制--ASP,反向连接,控制
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 源码发布
Copyright © 2003-2009 Ymyasp.Com. All Rights Reserved .
备案序号:粤ICP备07029071号