Click to See Complete Forum and Search --> : Plotting X-Y Scatter Graph


rebel
August 19th, 1999, 12:43 PM
Hi !

how do i plot points on an X-Y scatter graph using MSCchart ?

thank you.

Dr_Michael
August 24th, 1999, 04:18 AM
dim X_Y(m,n) 'give the dimensions of the array
'fill the array with values: X_Y(1,1)=7, etc..
With MSChart1
.chartType = VtChChartType2dXY
.ChartData = X_Y
End With