IAxisLabels.Multiline
IAxisLabels

property Multiline: WordBool;

Type Library
TeeChartx

Description
Activate Multiline Axis Labels. TeeChart will automaticall break DateTime Labels on occurence of a space " ". Use chr$(13) in other label types to break a line or use the TeeSplitInLines method in the OnGetAxisLabel event.

Example

DateTime value 1/2/1999 12:00:00

will appear as

1/2/1999

12:00:00

when Multiline is set to True.

Use "myLabel1stLine" + chr$(13) + "MyLabel2ndLine"

for none DateTime Labels or use the TeeSplitInLines method.