LabelFont

Syntax

<Path>.LabelFont:string
<Path>.LabelFont.Size:integer
<Path>.LabelFont.Bold:boolean
<Path>.LabelFont.Italic:boolean

The attribute LabelFont and its sub-attribute set the properties of the Labels of the axes in the Chart window.

Data Type of the Value You Can Assign

You can assign a value of data type string.

You can enter one of these fonts:

Arial

Arial Narrow

Comic Sans MS

Courier New

Haettenschweiler

Lucida Console

MS UI Gothic

Tahoma

Times New Roman

Trebuchet MS

Verdana

Note:

MS UI Gothic is intended for our Japanese users. An English or a German version of Microsoft Windows might not provide this font by default.

Example

MyChart.LabelFont:= "Tahoma"

The sub-attribute Size, of data type integer, sets the font Size. You can enter a number between 1 and 8.

Example

MyChart.LabelFont.Size := 4
Note:

The numbers in the drop-down list are not actual point sizes, but set a factor the Chart uses for sizing labels.

The sub-attribute Bold, of data type boolean, sets if the Chart shows the labels in bold face (true or not (false).

Example

MyChart.LabelFont.Bold := true

The sub-attribute Italic, of data type boolean, sets if the Chart shows the labels in italics (true) or not (false).

Example

MyChart.LabelFont.Italic := false

Related Topic

Labels