Any ideas on how to change the x-y-z scale ranges on 3D graphs in Labview 5.1? i.e. instead of having Labview automatically scale my graphs, I'd like to set the range interactively so that, for instance, the z range could be from zero to the maximum value instead of from the minimum value to the maximum. I'd like to do it without inserting artificial values in my data.
Drop an ActiveX property nodes to get the Axes collection. Then drop an ActiveX invoke node to get the third (Z) Axis object. Then drop an ActiveX property node to change the Minimum property. See the attached VI.
-- Aaron Michalk Software Engineer National Instruments (512) 683-8472
Jason Hiltner wrote:
> Any ideas on how to change the x-y-z scale ranges on 3D graphs in > Labview 5.1? i.e. instead of having Labview automatically scale my > graphs, I'd like to set the range interactively so that, for instance, > the z range could be from zero to the maximum value instead of from the > minimum value to the maximum. I'd like to do it without inserting > artificial values in my data. > > Jason