Owning Class: plots
Requires: MathScript RT Module
zlimit auto
zlimit manual
zlimit mode
zlimit([minz, maxz])
a = zlimit('mode')
Legacy Name: zlim
Sets the range of the z-scale. zlimit auto directs LabVIEW to fit the z-scale automatically to the plot. zlimit manual directs LabVIEW not to fit the z-scale automatically to the plot. zlimit mode returns the mode LabVIEW uses to determine the range of the z-scale.
| Name | Description |
|---|---|
| minz | Specifies the minimum z-value. minz is a real scalar. |
| maxz | Specifies the maximum z-value. maxz is a real scalar. |
| Name | Description |
|---|---|
| a | Returns the mode LabVIEW uses to determine the range of the z-scale. a is a string that can be either 'auto' or 'manual'. |
This function is not supported in the LabVIEW Run-Time Engine if you request an output from the function. Either do not request an output or remove this function from scripts before you build a stand-alone application or shared library.
X = 0:1:10;
plot3d(X, X, X)
zlimit([2, 8])
a = zlimit('mode')