Rotate

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
dotnetjunkee
Newbie
Newbie
Posts: 20
Joined: Fri Dec 05, 2003 5:00 am

Rotate

Post by dotnetjunkee » Mon Jun 19, 2006 10:57 am

Hello!

I'm working with a surface and a rotate. When I start my program, the 3D-surface is shown from a side view. Then I can use the rotate-tool to see the surface from a top view.
But how can I programatically specify to start the application from the top view?

Best regards

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

Post by Narcís » Mon Jun 19, 2006 11:24 am

Hi dotnetjunkee,

You can try doing something like this:

Code: Select all

      tChart1.Aspect.Orthogonal = false;
      tChart1.Aspect.Chart3DPercent = 100;
      tChart1.Aspect.Rotation = 360;
      tChart1.Aspect.Elevation = 270;
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