Hi !
how do i plot points on an X-Y scatter graph using MSCchart ?
thank you.
Printable View
Hi !
how do i plot points on an X-Y scatter graph using MSCchart ?
thank you.
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