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
Rotate
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi dotnetjunkee,
You can try doing something like this:
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 |
Instructions - How to post in this forum |