New to Telerik UI for WinUI? Download free 30-day trial

Create RadRangeSlider with a Single Scale

The following example demonstrates how to remove the ScaleTopLeft of the slider.

WinUI Rad Range Slider-How To-One Scale

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

<telerik:RadRangeSlider TickFrequency="10" Width="300"> 
    <telerik:RadRangeSlider.TopLeftScaleStyle> 
        <Style TargetType="primitives:ScalePrimitive"> 
            <Setter Property="Visibility" Value="Collapsed"/> 
        </Style> 
    </telerik:RadRangeSlider.TopLeftScaleStyle> 
</telerik:RadRangeSlider> 
In this article
Not finding the help you need?