New to Telerik UI for .NET MAUIStart a free 30-day trial

.NET MAUI CircularSlider Value Thumb

Updated on Aug 20, 2026

The CircularSlider's value thumb is drawn based on its Value property. End users can modify the Value by dragging the thumb along the backtrack or touching anywhere on the slider (the thumb, the range track, or the backtrack) depending on the drag mode (configured with the DragMode property).

  • Value (double)—Specifies the value of the slider, corresponds to the thumb position across the backtrack.

Here is a quick example on how to define the Value property:

XAML
<telerik:RadCircularSlider Grid.Row="0"
                           Minimum="0"
                           Maximum="100"
                           Value="{Binding MyValue, Mode=TwoWay}"
                           HorizontalOptions="Fill"
                           VerticalOptions="Start"
                           MinimumHeightRequest="300" />

This is the result:

Telerik UI for .NET MAUI CircularSlider showing Current Value 35.00 with the value thumb on a partial arc

Drag Mode

The CircularSlider's DragMode (Telerik.Maui.Controls.Sliders.SliderDragMode) property lets you configure one of three dragging options (only the thumb, free, or disabled) to interact with the CircularSlider and change its Value. You can choose from: * Thumb—The thumb moves along the backtrack only by dragging. * Free—The thumb's position (and the Value property) changes via dragging or touching anywhere on the range track or backtrack. * Disabled—The thumb's position is fixed on the backtrack and dragging is disabled.

Check below some quick examples:

Example with DragMode set to Only Thumb

XAML
<telerik:RadCircularSlider Grid.Row="1"
                           DragMode="Thumb"
                           HorizontalOptions="Fill"
                           VerticalOptions="Start"
                           MinimumHeightRequest="{OnPlatform iOS=230}" />

This is the result:

Telerik UI for .NET MAUI CircularSlider DragMode Thumb showing only the thumb can be dragged

Example with DragMode set to Free

XAML
<telerik:RadCircularSlider Grid.Row="1"
                           DragMode="Free"
                           HorizontalOptions="Fill"
                           VerticalOptions="Start"
                           MinimumHeightRequest="{OnPlatform iOS=230}" />

This is the result:

Telerik UI for .NET MAUI CircularSlider DragMode Free showing the thumb positioned by touching the track

Example with DragMode set to Disabled

XAML
<telerik:RadCircularSlider Grid.Row="1"
                           DragMode="Disabled"
                           HorizontalOptions="Fill"
                           VerticalOptions="Start"
                           MinimumHeightRequest="{OnPlatform iOS=230}" />

This is the result:

Telerik UI for .NET MAUI CircularSlider DragMode Disabled with a fixed value thumb

See Also

In this article
Drag ModeSee Also
Not finding the help you need?
Contact Support