07-06-2005 03:20 AM
07-06-2005 06:52 AM
The 3d plot is an activeX control and you can set the axis maximum programatically by wiring a reference to the control to:
1. Properity node: Axis
2. Method: Item (axis number 1, 2 or 3)
3. Method: Maximum (value)
in c++ style notation it is 3Dcontrol.Axis.Axis(1).Maximum(1000)
See the attached capture.
-Paul
07-06-2005 06:58 AM
07-06-2005 08:06 AM
07-06-2005 10:26 AM
Your welcome, you can use this approach to set almost any property of the 3d graph programatically.
Paul