How to set "3d Front" Under View of 3d through cod
Posted: Wed Sep 26, 2007 11:26 am
How to set "3d Front" option Under View of 3d through code
Steema Software - Customer Support Forums
http://216.92.243.79/support/
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