*Grids()
Specifies the number of grid lines per tic mark on a linear plot axis. Specifies the number of grid lines per decade on a log plot axis.
Syntax
*Grids (Number)
Application
HyperGraph
Inputs
- Number
 - A value between 0 and 21.
 
Context
*BeginAxis()
Report Definitions
Example
*BeginAxis(X)
	*Label("Force")
	*Scale(Linear)
	*Min(-8000)
	*Max(1000)
	*TicMethod()
	*Format(Auto)
	*Precision(5)
	*Tics(10)
	*Grids(2)
*EndAxis()
      Comments
The default is 2.
On a linear axis, a value of 1 creates one gridline per tic. A value of 2 creates one gridline per tic plus one gridline midway between each tic.
On a log axis, a value of 1 creates one gridline per decade. A value of 2 creates one gridline per decade plus one gridline midway between each decade.