New to Telerik UI for WinUI? Start a free 30-day trial
Create RadRangeSlider with a Single Scale
Updated on Mar 26, 2026
The following example demonstrates how to remove the ScaleTopLeft of the slider.

You can use the following namespaces to access RadRangeSlider control and its parts:
xmlns:telerik="using:Telerik.UI.Xaml.Controls.Input" and 'xmlns:primitives="using:Telerik.UI.Xaml.Controls.Primitives.RangeSlider"'
To remove the top left scale we can create custom Style targeting ScalePrimitive and collapsed it.
Example 1: Collapsed Top Left Scale
XAML
<telerik:RadRangeSlider TickFrequency="10" Width="300">
<telerik:RadRangeSlider.TopLeftScaleStyle>
<Style TargetType="primitives:ScalePrimitive">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</telerik:RadRangeSlider.TopLeftScaleStyle>
</telerik:RadRangeSlider>