📄 imgvar.asp
字号:
<%
'**********以下数据可根据图片具体要求设定或赋值***********************
'横纵坐标点数
Const xNum = 48
Const yNum = 10
'横纵坐标间距
Const xWidth = 12
Const yWidth = 20
'横,纵坐标单位
Const xUnit = "小时"
Const yUnit = "KW"
'坐标周围所留空白用以显示字符串
Const xLeft = 40
Const xRight = 60
Const yTop = 40
Const yButtom = 40
'定义三个坐标数组
Dim yArray1(48),yArray2(48),yArray3(48)
'定义用于显示的标题
Dim strTitle
'定义用于显示曲线标题的字符串
Dim strDate1,strDate2,strDate3
'定义横纵坐标最大值最小值
Dim yMax,yMin,xMax,xMin
'定义纵轴刻度单位
Dim yIncrement
'定义一些临时变量以供使用
Dim i,j,strTemp
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -