*Label() - axis and plot macro
Specifies an axis label or the name of the plot macro to be used in the interface.
Syntax
*Label ("Text")
Application
HyperGraph
Inputs
- "Text"
- The label of the axis or the name of the plot macro. Must be in double quotes.
Context
*BeginAxis()
*BeginPlotMacros()
*DefinePlotMacro()
Report Definitions
Example
*BeginPlotMacros()
   *DefinePlotMacro(macro_batch, curve, low, high, times )
      *Label("batch general")
      *Parameter(curve, "Curve (time = sec)", CURVE)
      *Parameter(low, "Low cutoff", SCALAR)
      *Parameter(high, "High cutoff", SCALAR)
      *Parameter(times, "Time conv.", SCALAR, 1.0)
      *Set(X, "curve.x")
      *Set(Y, "batch(times*curve.x,curve.y,low,high)")
      *Set(LABEL, curve.label + "_" + low + "_" + high)
   *EndDefine()
*EndPlotMacros()Comments
If *Label() is omitted, "X axis" and "Y Axis" are used for axes, respectively, and "Untitled" is used for macros.
The argument, "Text", must contain at least one character.