inactiveMinorTickColor property
Specifies the color for the inactive minor ticks in the SfSlider
,
SfRangeSlider
, and SfRangeSelector
.
The inactive side of the SfRangeSlider
and SfRangeSelector
is
between the min value and the left thumb,
and the right thumb and the max value.
For RTL, the inactive side of the SfRangeSlider
and SfRangeSelector
is
between the max value and the left thumb,
and the right thumb and the min value.
This snippet shows how to set inactive minor ticks color in SfRangeSliderThemeData.
SfRangeValues _values = SfRangeValues(4.0, 8.0);
Scaffold(
body: Center(
child: SfRangeSliderTheme(
data: SfRangeSliderThemeData(
inactiveMinorTickColor: Colors.red[200],
),
child: SfRangeSlider(
min: 2.0,
max: 10.0,
values: _values,
interval: 2,
showTicks: true,
minorTicksPerInterval: 1,
onChanged: (SfRangeValues newValues){
setState(() {
_values = newValues;
});
},
)
),
)
)
Implementation
final Color? inactiveMinorTickColor;