RangeTickSpec<D> constructor
const
RangeTickSpec<D> (
- D value, {
- required D rangeStartValue,
- required D rangeEndValue,
- String? label,
- TextStyleSpec? style,
Creates a range tick for value
.
A label
optionally labels this tick. If not set, the tick formatter
formatter of the axis is used.
A style
optionally sets the style for this tick. If not set, the style
of the axis is used.
A rangeStartValue
represents value of this range tick's starting point.
A rangeEndValue
represents the value of this range tick's ending point.
Implementation
const RangeTickSpec(
super.value, {
required this.rangeStartValue,
required this.rangeEndValue,
super.label,
super.style,
});