Available for: Windows 8.1

Create RadRangeSlider with a Single Scale

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

Rad Range Slider-How To-One Scale

You have to add the following references:

xmlns:telerikPrimitives ="using:Telerik.UI.Xaml.Controls.Primitives"
xmlns:telerikRrangeSliderPrimitives ="using:Telerik.UI.Xaml.Controls.Primitives.RangeSlider"

Here is the RadRangeSlider setup:

<telerikInput:RadRangeSlider TickFrequency="10" Width="300">
    <telerikInput:RadRangeSlider.TopLeftScaleStyle>
        <Style TargetType="telerikPrimitives:ScalePrimitive">
            <Setter Property="Visibility" Value="Collapsed"/>
        </Style>
    </telerikInput:RadRangeSlider.TopLeftScaleStyle>
</telerikInput:RadRangeSlider>