IAxisLabels.TeeSplitInLines
IAxisLabels

procedure TeeSplitInLines(Var St: WideString; Const Separator: WideString);

Type Library
TeeChartx

Description
Replaces input string St with separator to be used to break lines at each occurrence of the separator.

Example [Visual Basic]:

In OnGetAxisLabel event

With TChart1

If .SeriesCount > 0 Then

If (.Series(0).Count > 0) And (Axis = atBottom) Then

.Axis.Bottom.Labels.TeeSplitInLines LabelText, " "

End If

End If

End With