How to set "3d Front" Under View of 3d through cod
How to set "3d Front" Under View of 3d through cod
How to set "3d Front" option Under View of 3d through code
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi daryl,
You can do this:
You can do this:
Code: Select all
With TChart1
.Walls.Back.Transparent = False
.Walls.Size = 5
.Walls.Left.Visible = True
.Walls.Right.Visible = True
.Axis.Right.ZPosition = 0
.Axis.Left.Labels.Visible = True
.Aspect.Rotation = 360
.Aspect.View3D = True
.Aspect.Orthogonal = False
.Aspect.Elevation = 360
For t = 0 To .SeriesCount - 1
.Series(t).VertAxis = aBothVertAxis
Next
End With
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |