*ScaleFactor()
Scales a data vector in a curve.
Syntax
*ScaleFactor (expression)
Application
HyperGraph
Inputs
- expression
 - The scaling factor for the data vector.
 
Context
*BeginCurve()
*BeginVector()
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.0)
		*Offset(0)
	*EndVector()
	*BeginVector(Y, File)
		• • •
	*EndVector()
	*BeginVector(Time, File)
		• • •
	*EndVector()
*EndCurve()