*BeginCurve()

Indicates the beginning of a curve block.

Syntax

*BeginCurve (On/Off, "Name")

Application

HyperGraph

Inputs

On
Displays the curve.
Off
Turns off the displayed curve.
"Name"
The curve name in double quotes.

Context

*BeginPlot()

Report Definitions

Example

*BeginCurve(On, "Resultant Force (N)")
	*Line(1, 2, 1)
	*Symbol(1, 2, 10)
	*BeginVector(X, File)
		*Filename("../../demos/plotting/FORCES")
		*DataType("Force")
		*Request("abd.force trans")
		*component("Resultant Force (N)")
		*ScaleFactor(1)
		*Offset(0)
	*EndVector()
	*BeginVector(Y, File)
		• • •
	*EndVector()
	*BeginVector(Time, File)
		• • •
	*EndVector()
*EndCurve()

Comments

Curve blocks define a single curve in a plot window. Each curve in a window requires a *BeginCurve() block. Every curve block contains vector blocks that specify vector data for the curve. Every *BeginCurve() statement requires a closing *EndCurve() statement.

The curve name appears in the curve list on the Define Curves and Curve Attributes panels.

Curve attributes such as line style, color, and weight are specified using the *Line() statement. Symbols are assigned to curves using the *Symbol() statement.

For more information on plot curves, see Build Plots in the User Guide.