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?
Problem with walls in 3D plots
Problem with walls in 3D plots
- Attachments
-
- Backpanel.JPG (92.66 KiB) Viewed 6148 times
Re: Problem with walls in 3D plots
Hi Luke,
I can't see this effect in the following example:
And neither adding the following line to the example above:
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
Code: Select all
TChart1.Walls.Visible = False
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |
Re: Problem with walls in 3D plots
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
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)
Thanks for the information. I've reproduced it so I've added it to the defect list to be fixed in future releases (TV52015304)
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |