分享
 
 
 

用纯ASP实现完美的WEB柱状图

王朝asp·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

用纯ASP实现完美的WEB柱状图

<%

dim total(7,2)

total(1,1)=200

total(2,1)=800

total(3,1)=1000

total(4,1)=600

total(5,1)=1222

total(6,1)=3213

total(7,1)=8

total(1,2)="中国经营报"

total(2,2)="招聘网"

total(3,2)="51Job"

total(4,2)="新民晚报"

total(5,2)="新闻晚报"

total(6,2)="南方周末"

total(7,2)="羊城晚报"

total_no=7

%>

<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">

<!--[if !mso]>

<style>

v\:* { behavior: url(#default#VML) }

o\:* { behavior: url(#default#VML) }

.shape { behavior: url(#default#VML) }

</style>

<![endif]-->

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title></title>

<link rel="stylesheet" href="List.css"></head>

<body topmargin=5 leftmargin=0 scroll=no>

<%call table1(total,20,15,470,200)%>

</body>

</html>

以上是调用函数的例子,下面是所调用的函数

<%

function table1(total,thickness,table_space,all_width,all_height)

'参数含义(传递的数组,柱子的厚度,柱子的间隔,图表的宽度,图表的高度)

'纯ASP代码生成图表函数1——柱状图

'作者:龚鸣(Passwordgm) QQ:25968152 MSN:passwordgm@sina.com Email:passwordgm@sina.com

'本人非常愿意和ASP,VML,FLASH的爱好者在

HTTP://topclouds.126.com进行交流和探讨

'版本1.0 最后修改日期 2003-7-10

'非常感谢您使用这个函数,请您使用和转载时保留版权信息,这是对作者工作的最好的尊重。

dim tb_color(7,2)

tb_color(1,1)="#d1ffd1"

tb_color(2,1)="#ffbbbb"

tb_color(3,1)="#ffe3bb"

tb_color(4,1)="#cff4f3"

tb_color(5,1)="#d9d9e5"

tb_color(6,1)="#ffc7ab"

tb_color(7,1)="#ecffb7"

tb_color(1,2)="#00ff00"

tb_color(2,2)="#ff0000"

tb_color(3,2)="#ff9900"

tb_color(4,2)="#33cccc"

tb_color(5,2)="#666699"

tb_color(6,2)="#993300"

tb_color(7,2)="#99cc00"

response.write "<table border=0 cellpadding=0 cellspacing=0 style=border-collapse: collapse bordercolor=#111111 width="&all_width&" height="&all_height&">"

response.write "<tr><td width=100% height=* valign=middle><table border=0 cellpadding=0 cellspacing=0 style=border-collapse: collapse bordercolor='#111111' width='100%' height='100%'>"

response.write "<tr align='center'><td width='35' height='100%' valign='bottom'>"

response.write "<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%' height='100%'>"

temp1=0

for i=1 to total_no

if temp1<total(i,1) then temp1=total(i,1)

next

temp1=int(temp1)

if temp1>9 then

temp2=mid(cstr(temp1),2,1)

if temp2>4 then

temp3=(int(temp1/(10^(len(cstr(temp1))-1)))+1)*10^(len(cstr(temp1))-1)

else

temp3=(int(temp1/(10^(len(cstr(temp1))-1)))+0.5)*10^(len(cstr(temp1))-1)

end if

else

if temp1>4 then temp3=10 else temp3=5

end if

if total_no>0 then

for i=temp3 to 1 step -temp3/5

response.write "<tr style='font-size:1px;height:1px'><td></td><td bgcolor='#111111' width='20%'></td></tr>"

response.write "<tr align=right valign='top'><td colspan='2'>"&i&"</td></tr>"

next

response.write "</table>"

response.write "</td><td style='font-size:1px;height:1px' bgcolor='#111111'>1</td><td width='"&(all_width-30)&"' height='"&(all_height-30)&"' valign='bottom' align='left'>"

response.write "<!--[if gte vml 1]>"

z=9

width=30

total_width=280

width=(total_width-total_no*z*2)/(total_no)

m=0

if width>30 then width=30

m=m+1

for i=1 to total_no

response.write "<v:rect id='_x0000_s1025' alt='' style='position:relative;left:"

response.write table_space/2+table_space*(i-1)

response.write "pt;top:2px;width:"&width&"pt;height:"&(all_height/1.41)*total(i,1)/temp3&"pt;z-index:1' fillcolor='"&tb_color(i,2)&"'>"

response.write "<v:fill color2='"&tb_color(i,1)&"' rotate='t' type='gradient'/>"

response.write "<o:extrusion v:ext='view' backdepth='"&thickness&"pt' color='"&tb_color(i,2)&"' on='t'/>"

response.write "<v:textbox inset='0,0,0,0'>"

response.write "<table cellspacing=0 cellpadding=0 width='100%' height='100%'>"

response.write "<tr><td align='center'"

if (all_height/1.41)*total(i,1)/temp3<8 then response.write " style='font-size:1px;'"

response.write ">"&total(i,1)&"</td></tr>"

response.write "</table></v:textbox></v:rect>"

next

response.write "<![endif]--></td></tr>"

response.write "<tr align='center'><td></td><td style='font-size:1px;height:1px' bgcolor='#111111'></td><td style='font-size:1px;height:1px' bgcolor='#111111'></td></td>"

response.write "<tr align='center'><td></td><td></td><td width='' height='*' valign='middle'>"

response.write "<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%' height='30'>"

response.write "<tr align=center valign='center'>"

for i=1 to total_no

response.write "<td width='"&(100/total_no)&"%'>"&total(i,2)&"</td>"

next

else

response.write ""

end if

response.write "</tr></table></td></tr></table></td></tr></table>"

end function

%>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有