*SetAxisTicFont()

Specifies the font type, weight, style, and size for the axis tic mark labels of a plot.

Syntax

*SetAxisTicFont (Font Name, Weight, Slant, Size)

Application

HyperGraph and HyperGraph 3D.

Inputs

Font Name
The font type: Courier, Helvetica, New Century Schoolbook, or Times
Weight
The font weight, 1 or 0:
1
Bold
0
Normal (default)
Slant
The font style, 1 or 0:
1
Italic
0
Normal (default)
Size
The font size: 8, 10, 12, 14, 18, or 24

Context

*BeginPlotDefaults()

Example

*BeginPlotDefaults() 
   *SetBrowserExtension(".req") 
   *SetBackgroundColor(0) 
   *SetGridlineColor(14) 
   *SetHeaderColor(1) 
   *SetBorderColor(12) 
   *SetAxisColor(1) 
   *SetAxisDefaults(0, 11, 2, 1, 11, 4) 
   *SetAxisLabelFont("Times", 1, 0, 8) 
   *SetAxisTicFont("New Century Schoolbook", 0, 1, 18)
         • • •
*EndPlotDefaults()