Page 1 of 1

commander 3d button

Posted: Wed Mar 21, 2007 9:06 pm
by 9637570
In my code (or using your Commander example), if I turn off 3d, and then hit move (or other buttons), when the chart starts to move the 3d button comes back on. Is there a way to prevent this?

I have a handler for the commander ButtonClick, but this method isn't entered when the 3d button is toggled back on.

Posted: Thu Mar 22, 2007 8:53 am
by narcis
Hi sring,

I can think of two ways to achieve that for now:

1. Use any Commander mouse event to set 2D view:

Code: Select all

tChart1.Aspect.View3D = false;
2. Implement your own commander buttons like shown in this thread.