*SetZAxisLabel()
Specifies the default label for the primary z axis.
Syntax
*SetZAxisLabel ("string")
Application
HyperGraph 3D
Inputs
- string
- The default label for the primary z axes. Must be in double quotes.
Context
*BeginDefaults()
*BeginPlotDefaults()
Example
*BeginDefaults()
    *BeginPlotDefaults()
        *SetXAxisLabel("Frequency")
        *SetYAxisLabel("Time")
        *SetZAxisLabel("Force")
    *EndPlotDefaults()
*EndDefaults()Comments
The *SetZAxisLabel() statement specifies the default label for the primary z axis for all plots in a session.
See the demo file waterfall_using_sinusoidal.mvw for more information.