Page 1 of 1
Problem with walls in 3D plots
Posted: Thu Dec 02, 2010 6:17 am
by 16657835
Hi,
I'm having a problem with the back wall overwriting the graph when it is rotated in 3D graphs. Even though I set walls not to be visible in the editor the back wall is still visible and won't go away. Am I doing something wrong here; is this something you've come across before?
Re: Problem with walls in 3D plots
Posted: Thu Dec 02, 2010 2:06 pm
by yeray
Hi Luke,
I can't see this effect in the following example:
Code: Select all
Private Sub Form_Load()
TChart1.Aspect.Orthogonal = False
TChart1.Aspect.Chart3DPercent = 100
TChart1.Aspect.Rotation = 40
TChart1.Aspect.Elevation = 345
TChart1.Aspect.Zoom = 75
TChart1.Legend.Visible = False
TChart1.AddSeries scSurface
Dim x, z As Integer
For x = 0 To 20
For z = 0 To 20
TChart1.Series(0).asSurface.AddXYZ x, x, z, "", vbRed
Next z
Next x
TChart1.Tools.Add tcRotate
End Sub
And neither adding the following line to the example above:
Re: Problem with walls in 3D plots
Posted: Fri Dec 03, 2010 2:42 am
by 16657835
Hi Yervay, Thanks for your reply. I eventually discovered the cause was the Grid Band Tool; making this inactive stopped the problem. Regards Luke
Re: Problem with walls in 3D plots
Posted: Fri Dec 03, 2010 10:46 am
by yeray
Hi Luke,
Thanks for the information. I've reproduced it so I've added it to the defect list to be fixed in future releases (TV52015304)