FloatLinearAxisModel
constructor( range: ClosedFloatingPointRange<Float>, zoomRangeLimit: Float = (range.endInclusive - range.start) * ZoomRangeLimitDefault, minimumMajorTickIncrement: Float = (range.endInclusive - range.start) * MinimumMajorTickIncrementDefault, minimumMajorTickSpacing: Dp = 50.dp, minorTickCount: Int = 4, allowZooming: Boolean = true, allowPanning: Boolean = true)
Parameters
range
The minimum to maximum values allowed to be represented on this Axis. Zoom and scroll modifications may not exceed this range.
zoomRangeLimit
Specifies the minimum allowed range after zooming. Must be greater than 0 and less than the difference between the start and end of range.
minimumMajorTickIncrement
The minimum value between adjacent major ticks. Must be less than or equal to the extent of the range.
minimumMajorTickSpacing
Specifies the minimum physical spacing for major ticks, in Dp units. Must be greater than 0.
minorTickCount
The number of minor ticks per major tick interval.
allowZooming
If the axis should allow zooming
allowPanning
If the axis should allow panning.