EAxisLabelStyle

type EAxisLabelStyle = (talAuto, talNone, talValue, talMark, talText);

Type Library
TeeChartx

Description
EAxisLabelStyle defines the possible values of the Axis.Label.Style property.

You can override each axis label text by using the TChart.OnGetAxisLabel event.

Possible values for Axis.Label.Style are:

0. talAuto Choose the Style automatically.

1. talNone No label. This will trigger the event with empty strings.

2. talValue Axis labeling is based on axis Minimum and Maximum properties.

3. talMark Each Series point will have a Label using SeriesMarks style.

4. talText Each Series point will have a Label using Series.XLabels strings.

See note on use of Enum constants in differing development environments.