*Tics()
Specifies the number of tics on a plot axis.
Syntax
*Tics (Number)
Application
HyperGraph
Inputs
- Number
- A value indicating the number of tic marks on the axis. Must be a whole number less than or equal to 21.
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 the axis is linear, *Tics() is the number of tic marks on the axis.
If the axis format is logarithmic or decibel, *Tics() is the number of tics per decade.
The default is 11.