*SetSecondaryHeaderFont()
Specifies the font type, weight, style, and size for the second line of the plot header.
Syntax
*SetSecondaryHeaderFont (Font Name, Weight, Slant, Size)
Application
HyperGraph
Inputs
- Font Name
- The font type of the header text: Courier, Helvetica, New Century Schoolbook, or Times
- Weight
- The font weight of the header text, 1 or 0:
- 1
- Bold
- 0
- Normal (default)
- Slant
- The font style of the header text, 1 or 0:
- 1
- Italic
- 0
- Normal (default)
- Size
- The font size of the header text: 8, 10, 12, 14, 18, or 24
Context
*BeginPlotDefaults()
Example
*BeginPlotDefaults()
• • •
*SetHeaderColor(3)
*SetPrimaryHeaderFont("Times",0,0,8)
*SetSecondaryHeaderFont("Times",1,0,10)
*SetTertiaryHeaderFont("Times",0,1,12)
*SetFooterColor(3)
*SetPrimaryFooterFont("Helvetica",0,0,8)
*SetSecondaryFooterFont("Helvetica",0,1,10)
*SetTertiaryFooterFont("Helvetica",1,0,12)
*SetCurveDefaults(1, 2, 1, 0, 0)
• • •
*EndPlotDefaults()
Comments
A plot header can contain any number of lines and is different from a page header, *BeginHeader(). Fonts for page headers are set using the *Font() statement.