Page 1 of 1

Rotate

Posted: Mon Jun 19, 2006 10:57 am
by 8123141
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

Posted: Mon Jun 19, 2006 11:24 am
by narcis
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;