Hellow:

I have the following VB6 code to get a scatter chart with MSChart:

Code:
Private Sub Form_Load()
Form1.Show
' POINTS
Dim Graph(1 To 41, 1 To 2) As Single

            Graph(1, 1) = -9   ' value for X-axis
            Graph(2, 1) = -5
            Graph(3, 1) = 9
            Graph(4, 1) = 9
            Graph(5, 1) = 18
            Graph(6, 1) = 9
...