Discrete Linear Axis Model
Interface implemented by LinearAxisModels that use integers.
Inheritors
Properties
Specifies the minimum physical spacing for major ticks, in Dp units. Must be greater than 0.
The minimum to maximum values allowed to be represented on this Axis. Zoom and scroll modifications may not exceed this range.
The currently viewable range on the axis.
Functions
Computes the linear offset of the provided point along this axis relative to its min value. For a linear axis this is offset = (point-min)/(max-min). Values less than 0 or greater than 1 mean the point is before or beyond the range of the axis, respectively. Nonlinear, e.g. log, axes can be implemented with appropriate transformations in this function.
Computes major and minor tick values based on the minimum tick spacing and the overall axisLength.
Sets the currently viewable range on the axis. This is a more direct alternative to using pan and zoom to set the range of currently viewable values on an axis. The start and end must be within the allowed range of the axis. If they exceed either limit they will be clamped to the range.