IAxisLabels.RoundFirstLabel
IAxisLabels

property RoundFirstLabel: WordBool;

Type Library
TeeChartx

Description
Default: True

Run-time only. The RoundFirstLabel property controls if Axis labels will be automatically "rounded" to the nearest magnitude. This applies both to DateTime and non-DateTime axis values. When False, Axis labels will start at Maximum Axis value.

Example [Visual Basic]

Given an Axis with Minimum = 70 and Maximum = 585:

TChart1.Axis.Left.Labels.RoundFirstLabel = True

Axis labels: 100 200 300 400 500

TChart1.Axis.Left.Labels.RoundFirstLabel = False

Axis labels: 85 185 285 385 485 585