欢迎光临
我们一直在努力

ASP中使用Office2000中的图表控件-ASP教程,组件开发

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

asp中使用office2000中的图表控件

— microsoft office chart 9.0 制作图表

前一阵为了做图表,查看了论坛中的所有文章,但大都是用aspchart,shortgraph等组件,这些组件多半都是国外开发要money的。如果你用office 的ms chart,往往作出的效果又差强人意。如果你使用过office2000中excel的图表的话,应该被一流的效果所折服。想把他搬上你的网站吗?没问题,现在你也能通过asp和vbscript来实现microsoft office chart 9.0 的强大的功能和绝妙的效果。

示例中使用 ado 记录集中的数据创建图表。首先根据返回的记录集数据创建以制表符分隔的字符串,然后通过 setdata 方法并使用此字符串设置图表数据。

源文件chart.asp :

(参照微软帮助范例,加入部分本人的修改…)

<html>

<head>

<meta name="generator" content="microsoft frontpage 4.0">

</head>

<body>

<object id=chartspace1 classid=clsid:0002e500-0000-0000-c000-000000000046 style="width:80%;height:350"></object>

<object id=adoconnection1 classid=clsid:00000514-0000-0010-8000-00aa006d2ea4></object>

<script language=vbscript>

sub window_onload()

dim rs, categories, values

categories = ""

values = ""

打开连接执行sql查询 (建立“nwind.mdb”库,并创建名为“category sales for 1995”的表)

adoconnection1.open "driver={microsoft access driver (*.mdb)};dbq=c:\nwind.mdb"

set rs = adoconnection1.execute("select * from [category sales for 1995]")

对于每一字段记录产生一个由制表符分隔的字符串

rs.movefirst

do while not rs.eof

categories = categories & rs.fields(0).value & chr(9)

values = values & rs.fields(1).value & chr(9)

rs.movenext

loop

rs.close

adoconnection1.close

删去字符串末尾的分隔符

categories = left(categories, len(categories) – 1)

values = left(values, len(values) – 1)

创建一个系列

chartspace1.clear

chartspace1.charts.add

chartspace1.charts(0).seriescollection.add

chartspace1.charts(0).seriescollection(0).caption = "sales"

使用recordset生成的字符串设置系列的类型和值

set c = chartspace1.constants

chartspace1.charts(0).seriescollection(0).setdata c.chdimcategories, c.chdataliteral, categories

chartspace1.charts(0).seriescollection(0).setdata c.chdimvalues, c.chdataliteral, values

设置图表工作区的标题,并将图表工作区的图例放置于工作区的右边。

chartspace1.haschartspacetitle = true

with chartspace1.chartspacetitle

.caption = "monthly sales data"

.font.size = 12

.font.color = "#ff0000"

.font.bold = true

end with

chartspace1.haschartspacelegend = true

with chartspace1.chartspacelegend

.position = c.chlegendpositionright

.font.color = "#009999"

.font.size = 9

end with

设置图表类型(具体样式见附录)

chartspace1.charts(0).type = c.chcharttypebarclustered

轴的坐标格式、样式(有坐标轴时才设)

with chartspace1.charts(0).axes(c.chaxispositionbottom)

.numberformat = "#,##0"

.font.size = 9

end with

with chartspace1.charts(0).axes(c.chaxispositionleft)

.font.color = "#0000ff"

.font.size = 9

end with

end if

end sub

</script>

</body>

</html>

以上程序在win98+pws 下通过。

通过以上的例程你可以根据你的需要,增加自己所需要的效果,一定能制作出极酷的统计图表来的,需要帮助可以参见微软的帮助文件(装了 office2000 就有)msowcvba.chm 以及msdn 在线帮助。

有个缺点:客户端好像也要装office2000 才行,另外我还没找到如何不安装 office2000 来注册该组件的方法,如果那位高手知道,请告诉我 luo_zhenyu@netease.com ,谢谢!

附:

chartcharttypeenum constants 图表类型常数(转至msdn)

constant value

chcharttypecombo -1

chcharttypecolumnclustered 0

chcharttypecolumnstacked 1

chcharttypecolumnstacked100 2

chcharttypebarclustered 3

chcharttypebarstacked 4

chcharttypebarstacked100 5

chcharttypeline 6

chcharttypelinemarkers 7

chcharttypelinestacked 8

chcharttypelinestackedmarkers 9

chcharttypelinestacked100 10

chcharttypelinestacked100markers 11

chcharttypesmoothline 12

chcharttypesmoothlinemarkers 13

chcharttypesmoothlinestacked 14

chcharttypesmoothlinestackedmarkers 15

chcharttypesmoothlinestacked100 16

chcharttypesmoothlinestacked100markers 17

chcharttypepie 18

chcharttypepieexploded 19

chcharttypepiestacked 20

chcharttypescattermarkers 21

chcharttypescattersmoothlinemarkers 22

chcharttypescattersmoothline 23

chcharttypescatterlinemarkers 24

chcharttypescatterline 25

chcharttypescatterlinefilled 26

chcharttypebubble 27

chcharttypebubbleline 28

chcharttypearea 29

chcharttypeareastacked 30

chcharttypeareastacked100 31

chcharttypedoughnut 32

chcharttypedoughnutexploded 33

chcharttyperadarline 34

chcharttyperadarlinemarkers 35

chcharttyperadarlinefilled 36

chcharttyperadarsmoothline 37

chcharttyperadarsmoothlinemarkers 38

chcharttypestockhlc 39

chcharttypestockohlc 40

chcharttypepolarmarkers 41

chcharttypepolarline 42

chcharttypepolarlinemarkers 43

chcharttypepolarsmoothline 44

chcharttypepolarsmoothlinemarkers 45

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