Page 1 of 1

How to set "3d Front" Under View of 3d through cod

Posted: Wed Sep 26, 2007 11:26 am
by 9524108
How to set "3d Front" option Under View of 3d through code

Posted: Wed Sep 26, 2007 11:55 am
by narcis
Hi daryl,

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