*Scale() - HyperGraph
Indicates whether a plot axis is linear, logarithmic, dB10 or dB20.
Syntax
*Scale (Linear/Log/Decibels)
Application
HyperGraph
Inputs
- Linear
- Defines the axis as linear.
- Log
- Defines the axis as logarithmic.
- dB10
- Defines the axis as dB10.
- dB20
- Defines the axis as dB20.
Context
*BeginAxis()
Report Definitions
Example
*BeginAxis(X)
	*Label("Force")
	*Scale(Linear)
	*Min(-8000)
	*Max(1000)
	*Format(Auto)
	*Precision(5)
	*Tics(10)
	*Grids(2)
*EndAxis()Comments
If no axis type is specified, Linear is used.