Create RadRangeSlider with a Single Scale
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
<telerik:RadRangeSlider TickFrequency="10" Width="300">
<telerik:RadRangeSlider.TopLeftScaleStyle>
<Style TargetType="primitives:ScalePrimitive">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</telerik:RadRangeSlider.TopLeftScaleStyle>
</telerik:RadRangeSlider>