IAxis.Increment
IAxis See also
property Increment: Double;
Type Library
TeeChartx
Description
Axis Increment is the minimum step between axis labels. It must be a positive number or DateTime value. TChart will use this value as the starting axis labels step. If there is not enough space for all labels, TChart will calculate a bigger one. You can use the DateTimeStep constant array for DateTime increments.
Example [Visual Basic]:
TChart1.Axis.Bottom.Increment = TChart1.GetDateTimeStep(dtOneHour)
TChart1.Axis.Right.Increment = 1000
To return the value of dynamically created increments on a plotted Chart please use the CalcIncrement method.
See also:
CalcIncrement