public Boolean RoundFirstLabel {get; set;}
Remarks
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
Given an Axis with Minimum = 70 and Maximum = 585:
[C#]
tChart1.Axes.Left.Labels.RoundFirstLabel = true;
Axis labels: 100 200 300 400 500
tChart1.Axes.Left.Labels.RoundFirstLabel = false;
Axis labels: 85 185 285 385 485 585
See Also
AxisLabels Class | AxisLabels Members | Steema.TeeChart Namespace