title | page_title | description | position | slug |
---|---|---|---|---|
Backtrack |
.NET MAUI Slider Documentation - Backtrack |
Learn how to configure the backtrack of the Telerik UI Slider for .NET MAUI provides - set the min and max values and choose if the backtrack should extend beyond them. |
5 |
slider-backtrack |
The thumb runs along the backtrack of the Slider. The backtrack represents all the values your end users can choose from.
You need to configure a Minimum
value and a Maximum
value for the Slider. These values define the limits of the backtrack.
Minimum
(double
)—Defines the minimum value of the slider.Maximum
(double
)—Defines the maximum value of the Slider.
By default, the backtrack is drawn between the Minimum
and Maximum
values. Through the BacktrackExtent
property you can extend the backtrack at the edges beyond the minimum and the maximum values.
BacktrackExtent
(double
)—Defines how many pixels beyond the minimum and the maximum values the backtrack will extend.
<telerik:RadSlider Minimum="0"
Maximum="100"
Value="35"
TickStep="10"
TicksPlacement="End"
LabelStep="100"
LabelsPlacement="End"
BackTrackExtent="50" />
- [Value Thumb]({% slug slider-value-thumb%})
- [Range Track]({%slug slider-range-track%})
- [Track Styling]({% slug slider-track-styling%})