Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.65 KB

backtrack.md

File metadata and controls

45 lines (32 loc) · 1.65 KB
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

.NET MAUI Slider Backtrack

The thumb runs along the backtrack of the Slider. The backtrack represents all the values your end users can choose from.

Minimum and Maximum

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.

Backtrack Extent

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" />

Telerik Slider for .NET MAUI Backtrack Extent

See Also

  • [Value Thumb]({% slug slider-value-thumb%})
  • [Range Track]({%slug slider-range-track%})
  • [Track Styling]({% slug slider-track-styling%})