文件名称:
Office Web Components 11
开发工具:
文件大小: 17mb
下载次数: 0
上传时间: 2011-03-05
详细说明:
以下内容从原文随机摘录,并转为纯文本,不代表完整内容,仅供参考。 一个功能强大的图表组件,可以在ASP、VB、.Net等编程环境下使用。 OWC11在Office2003中有提供,如果你还没有安装Office2003,请下载该组件,然后注册owc11.dll,注册方法:regsvr32 保存路径\owc11.dll,即可使用。 以下提供一个ASP+OWC11制作统计图的简单示例 具体方法可以参考官方帮助:http://support.microsoft.com/default.aspx?scid=kb;zh-cn;244049#top <%@ language="vbscript"%> ASP+OWC11制作统计图示例 <% Dim oChart, c, Categories(5), Vals(5), i, sCaption 'Generate random categories and values for the cha rt 'These values can come from some existing data source for i = 1 to 5 Categories(i) = "示例" & CStr(i) Vals(i) = 5 * Rnd(100) next 'Create a Chart Object Set oChart = CreateObject("OWC11.ChartSpace") Set c = oChart.Constants 'Set the different parameters for the ChartSpace oChart.Border.Color = c.chColorNone 'Get Organization number and use it to set the Caption sCaption = "ASP+OWC11制作统计图示例" 'Add a chart and set parameters for the chart oChart.Charts.Add oChart.Charts(0).Type = oChart.Constants.chChartTypeColumnClustered oChart.Charts(0).SeriesCollection.Add oChart.Charts(0).SeriesCollection(0).Caption = sCaption oChart.Charts(0).SeriesCollection(0).SetData c.chDimCategories, c.chDataLiteral, Categories oChart.Charts(0).SeriesCollection(0).SetData c.chDimValues, c.chDataLiteral, Vals oChart.Charts(0).HasLegend = True oChart.Charts(0).HasTitle = True 'Get a temporary filename to save chart in that file sFname = session.SessionID & ".gif" 'Export the chart to the temporary file oChart.ExportPicture server.MapPath(sFname), "gif", 600, 512 'Create a link to the generated file Response.Write "" %> ...展开收缩
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.