*SetAxisDefaults()

Specifies default axis settings such as type and number of tics.

Syntax

*SetAxisDefaults (Type, Number Of Tics, Grids Per Tic, Tics Per Decade, Grids Per Decade, Dynamic Range)

Application

HyperGraph and HyperGraph 3D.

Inputs

Type
Specifies whether the axes are:
0
Linear
1
Decibel
2
Logarithmic
Number of Tics
The number of tics displayed on the axes.
Grids Per Tic
The number of gridlines between each tic.
Tics Per Decade
The number of tics in a decade on a logarithmic scale or decibel.
Dynamic Range
The power of 10 to be used for calculating the default dynamic range.

Context

*BeginPlotDefaults()

Example

*BeginPlotDefaults()
	*SetBorderColor(12)
	*SetFrameColor(12)
	*SetHeaderColor(1)
	*SetBackgroundColor(0)
	*SetGridlineColor(14)
	*SetZerolineColor(10)
	*SetAxisColor(1)
	*SetCurveDefaults(1, 3, 1, 0, 0)
	*SetCurveDefaults(1, 4, 1, 0, 0)
	*SetAxisDefaults(0, 11, 2, 1, 11, 4)
	*SetLegendPlacement(TopRight)
	*SetNoteAttachment(View)
	• • •
*EndPlotDefaults()

Comments

*SetAxisDefaults() applies to both the X and Y axes.