New to Telerik UI for .NET MAUI? Start a free 30-day trial

.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.
<telerik:RadSlider x:Name="slider"
                   Minimum="0"
                   Maximum="100"
                   Value="35" />

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

In this article