a**i 发帖数: 508 | 1 【 以下文字转载自 BuildingWeb 讨论区 】
发信人: alli (Emma), 信区: BuildingWeb
标 题: [求助] 用VBScript 在EXCEL画图的问题
发信站: BBS 未名空间站 (Thu Oct 27 14:22:16 2011, 美东)
我想用chartobject在一个EXCEL chart上画多个线. 每次call下面的FUNC.
Function addSeries(objCHart, yRange, xRange, curveName)
With objChart.Chart
With .SeriesCollection.NewSeries
.Values = yRange
.XValues = xRange
.Name = curveName
End With
End With
end function
问题是:
第一条线OK, 后面划出的线上的点的位置是前面线的叠加. 而用MOUSE悬停在点上显示
的数值又是正确的.
例如:line1(x=1)=1, line2(x=1)=0.5
line2(x=1)点的位置就在1.5,但显示0.5 |
|