IChartFont.Size
IChartFont

property Size: Integer;

Type Library
TeeChartx

Description
The ChartFont.Size property sets Font sizing (in points) for text. When managing Font sizes of Canvas custom outputted text relative to Chart text (titles, labels, etc.), use Font.Height to size the Canvas text.

Example [Visual Basic]:

TChart1.Header.Font.Size = 12

Sizing custom outputted text:

With TChart1

.Canvas.Font.Height = .Axis.Left.Title.Font.Size * _

.Axis.Left.Title.Font.PixelsPerInch /72

.Canvas.TextOut 100, 100, "Text same size as Left Axis Title"

End with