*DefinePlot()
Begins a plot definition block.
Syntax
*DefinePlot(plt_def_name, [arg_1, arg_2,..., arg_n])
Application
HyperGraph
Arguments
- plt_def_name
 - The name of the plot definition.
 - arg_1, arg_2,..., arg_n (Optional)
 - User-defined arguments.
 
Example
*DefinePlot(plt_def_camber, fname)
    *BeginAxis(X, "Primary", on)
        *Label("Camber ( deg )")
    *EndAxis()
    *BeginAxis(Y, "Primary", on)
        *Label("Wheel center disp ( mm )")
    *EndAxis()
    *Curve(dummy, "Camber",
           crv_def_1,
           fname,
           "REQ/50000010",
           "RZ",
           "REQ/50000000",
           "Z")
*EndDefine()
        Comments
The *DefinePlot() statement requires an ending *EndDefine() statement.
All arguments after the first argument are user-defined.