Number of selected pads (" & Cstr(nseen) & ") is smaller than the number of sensor pads (" & Cstr(ntot) & ")
"
Response.write(line)
End If
%>
<%
Dim Chart
Dim Color(8)
Color(0) = vbRed
Color(1) = vbBlue
Color(2) = vbYellow
Color(3) = vbGreen
Color(4)= vbMagenta
Color(5)= vbCyan
Color(6)= vbWhite
Color(7)= vbBlack
rem **********************************************************************
rem * Instantiate the Chart component
rem **********************************************************************
Set Chart = Server.CreateObject ("ASPChart.Chart")
rem **********************************************************************
rem * Create x Array
rem **********************************************************************
Chart.AddSeries 5
Chart.SeriesTitle = " test "
Chart.LineWidth = 1
Chart.Stairs = true
If nseen>0 Then
cmax=-10000
do while not Scv.Eof
dcol=CDbl(Scv("col"))
dcap=CDbl(Scv("Capacitance"))
Chart.AddXY dcol, dcap, "",Color(1)
If cmax"
Response.Write (line)
rem **********************************************************************
rem * Destroy the object
rem **********************************************************************
Set Chart = nothing
' Database is not needed anymore !
Connection.Close
%>
Detailed printout of all the capacitance data can be found ">here