3D Point Chart Series
3D Point Chart Series
Could you please tell me how to plot the Z-Axis values on a 3D point chart? The only method that is exposed is ADDXY, but how do I set a Z-Axis value? I see the sample doing it with the FillSampleValues method, but how can I do this programmatically?
How about something like this :
Josep Lluis Jorge
http://support.steema.com
Code: Select all
Private Sub Form_Load()
With TChart1
.AddSeries scPoint3D
.Series(0).asPoint3D.AddXYZ 0, 10, 1, "", clTeeColor
.Series(0).asPoint3D.AddXYZ 1, 15, 5, "", clTeeColor
.Series(0).asPoint3D.AddXYZ 2, 4, 2, "", clTeeColor
.Series(0).asPoint3D.AddXYZ 3, 20, 10, "", clTeeColor
.Series(0).asPoint3D.AddXYZ 4, 5, 2, "", clTeeColor
.Axis.Depth.Visible = True
End With
End Sub
http://support.steema.com