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

TeeChart for ActiveX, COM and ASP
Post Reply
daryl
Newbie
Newbie
Posts: 91
Joined: Thu Sep 09, 2004 4:00 am
Location: UK
Contact:

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

Post by daryl » Wed Sep 26, 2007 11:26 am

How to set "3d Front" option Under View of 3d through code

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Sep 26, 2007 11:55 am

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
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply