| 网站首页 | 资讯 | 影音 | 图片 | 论坛 | 模拟驾考 | 免费取名算命 | 瓷都工具 | 留言本 | 域名 | 瓷都商城 | 汇款 | 
|
资讯首页
|
瓷都德化
|
站内新闻
|
影视剧情
|
汽车世界
|
网络文摘
|
周易八卦
|
教程技巧
|
房产信息
|
您现在的位置: 瓷都热线|诚信中国:“一就是一”(1941.CN) >> 资讯 >> 教程技巧0 >> 网络编程 >> 正文 登录 注册
专 题 栏 目
  • 四川汶川8.0级强震
  • 机动车驾驶员考试资料
  • 高考试题及答案
  • 最 新 热 门
     德化又添3个地理标志证明
     [组图]期待!德化龙门湖
     [组图]德化:“绿色动脉
     [图文]德化:造莲花美景
     [图文]德化:编织小网格
     [图文]德化龙门滩龙门湖
     [图文]福建德化县美湖镇
     德化白瓷艺术展亮相深圳
     [组图]“世界瓷都·润养
     德化:前妻婚内举债近8万
    最 新 推 荐
     [组图]期待!德化龙门湖
     [组图]德化:“绿色动脉
     [图文]德化龙门滩龙门湖
     [图文]福建德化县美湖镇
     [组图]德化各种花卉相继
     [组图]福建德化九仙山迎
     [图文]德化石牛山惊现双
     [组图]千年古瓷都德化的
     [组图]警方连捣5传销窝点
     [组图]福建民俗博物馆办
    相 关 文 章
    如何制作无状态的ASP组件
    利用OWC服务器端组件动态
    利用OWC画图的例子
    给ASP增加绘图功能(画饼
    ASP生成Word文档的又一方
    如何准确定时运行ASP文件
    在ASP处理程序时显示进度
    ASP进度条
    将人民币的数字表示转化
    ASP导出Excel数据的四种
    利用MSCHART画图的一段代码         ★★★
    利用MSCHART画图的一段代码
    作者:未知 文章来源:网络文摘 更新时间:2006-5-10 2:33:40
    【声明:转载此信息在于传递更多信息,其内容表达的观点并不代表本站立场,由这些信息所产生的一切后果本站不负任何责任。如果您对本信息有什么意见,欢迎和本站联系,谢谢!】http://CiDu.Net
    <!-- Here we are calling the LPK file.  This LPK file
    was created using the same method explained in the article-->

    <object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
    id="Microsoft_Licensed_Class_Manager_1_0">
       <param NAME="LPKPath" VALUE="mschart5.lpk">
    </object>


    <-- Here is where we are actually "instantiating" the
    ActiveX control.  I downloaded the file mschart5.cab from
    Microsoft's website.  It has been digitally signed. -->

    <OBJECT ID="MSChart1" WIDTH=100% HEIGHT=95%
    CLASSID="CLSID:31291E80-728C-11CF-93D5-0020AF99504A"
      codebase="mschart5.cab">
    </OBJECT>


    <script LANGUAGE="Vbscript">
    'Now, let's set the chart properties...!!!

    'This sets the chart to a line graph...
    MSChart1.ChartType = 3

    'Set the color and width of the line
    ' This sets the pen color to black (0,0,0)
    ' and width to 50 pixels.
    MSChart1.Plot.SeriesCollection(1).Pen.VtColor.Set 0,0,0
    MSChart1.Plot.SeriesCollection(1).Pen.Width = 50


    'This sets the chart's labels to various formats,
    ' fonts, and sizes.
    For i = 1 To MSChart1.Plot.Axis(1).Labels.Count
       'Format the Chart labels to Currency
       MSChart1.Plot.Axis(1).Labels(i).Format = "$0,###"
       
       'Set the font to Tahoma
       MSChart1.Plot.Axis(1).Labels(i).VtFont.Name = "Tahoma"
       
       'Set the font size to 10pt
       MSChart1.Plot.Axis(1).Labels(i).VtFont.Size = 10
    Next


    'This sets the # of rows in the chart
    MSChart1.RowCount = 5;

    'This sets the number of columns per row.
    MSChart1.ColumnCount = 2

    'This indicates to show the label
    MSChart1.ShowLegend = True


    for x = 1 to 5  'The number of rows we have
        'This sets what current row we are editing
        MSChart1.Row = x
       
          'This sets the row's label
        MSChart1.RowLabel = "Row " & x

        'This plots the points for both columns (1 and 2)
        'for the current row (x).  The value being
        'plotted is x*5 and x*10   
        call MSChart1.DataGrid.SetData(x, 1, x*5,nullFlag)
        call MSChart1.DataGrid.SetData(x, 2, x*10,nullFlag)
    next

    </script>

    声明:以上信息资料大都是网上搜集而来,版权归作者,如有版权问题请留言告知我将马上改正。
    文中所提到的各种观点只是原文观点,各种说法未经一一确认。并不代表本站认可此观点!!
    资讯录入:admin    责任编辑:admin 
  • 上一篇资讯:

  • 下一篇资讯:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    点击数:802
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
        没有任何评论