*BeginLegend() - HyperGraph

Indicates the beginning of a legend block in a plot block.

Syntax

*BeginLegend (On/Off)

Application

HyperGraph and MediaView

Context

*BeginPlot()

Report Definitions

Example

*BeginPlot()
     *BeginHeader(On)
        *Text("Passenger Airbag Demo")
        *Text("Elastic Force")
     *EndHeader()
     .	.	.
     *BeginAxis(X, "Untitled", on)
        *Label("Time (ms)")
        *Scale(Linear)
          .	.	.
        *Color(1)
        *AutoFit(TRUE)
     *EndAxis()
    *BeginLegend(On)
       *Font("helvetica", 0, 0, 12)
       *Position(1.2, 0)
       *BorderWidth(1)
    *EndLegend()
*EndPlot()

Comments

The *BeginLegend() statement requires a closing *EndLegend() statement.