*SetTertiaryFooterFont()
Specifies the font type, weight, style, and size for the third line and all lines thereafter in a plot footer.
Syntax
*SetTertiaryFooterFont (Font Name, Weight, Slant, Size)
Application
HyperGraph
Inputs
- Font Name
- The font type of the footer text: Courier, Helvetica, New Century Schoolbook, or Times
- Weight
- The font weight of the footer text, 1 or 0:
- 1
- Bold
- 0
- Normal (default)
- Slant
- The font style of the footer text, 1 or 0:
- 1
- Italic
- 0
- Normal (default)
- Size
- The font size of the footer 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 footer can contain any number of lines and is different from a page footer, *BeginFooter(). Fonts for page footers are set using the *Font() statement.