Have a problem with 3d surface plot in .net 2003
Posted: Wed Jul 26, 2006 2:31 pm
I add a chart
add a 3d surface plot
in a button click event
I process the following code
Dim a As Integer
Dim b As Integer
Dim c As Integer
For a = 0 To 9
For b = 0 To 9
For c = 0 To 9
TChart1.Series(0).Add(a, b, c)
Next
Next
Next
I get no plot. I made no changes to the chart other than adding a 3d surface series.
any ideas what I am doing wrong
add a 3d surface plot
in a button click event
I process the following code
Dim a As Integer
Dim b As Integer
Dim c As Integer
For a = 0 To 9
For b = 0 To 9
For c = 0 To 9
TChart1.Series(0).Add(a, b, c)
Next
Next
Next
I get no plot. I made no changes to the chart other than adding a 3d surface series.
any ideas what I am doing wrong