*TitleFont() - HyperGraph
Specifies the font type, weight, style, and size for the axis labels or datum line labels.
Syntax
*TitleFont (Name, Weight, Slant, Size)
Application
HyperGraph
Inputs
- Name
 - The font type. Examples include Helvetica, Courier, Times New Roman, or any other font installed on your machine.
 - Weight
 - The font weight.
- 1
 - Bold
 - 0
 - Normal (default)
 
 - Slant
 - The font style.
- 1
 - Italic
 - 0
 - Normal (default)
 
 - Size
 - The font point size. Options include 8, 10, 12, 14, 18. or 24.
 
Context
*BeginPage()
Example
*BeginPage()
    *IsActive()
    *Name("page1")
    *Title("Node Data-1", On)
    *TitleFont("Arial", 1, 0, 14)
    *Layout(2)
    *AnimationMode(Transient)
*EndPage()