Articles in this section
Category / Section

How to change the selected area color in SfRangeSlider in Silvelright ?

1 min read

This article explains how to change the selected area color in SfRangeSlider.

This can be achieved by the following process. By using the ActiveTrackStyle property, yYou can modify the appearance of the active track of SfRangeSlider.

Xaml

  <Grid> 
        <Grid.Resources> 
            <ResourceDictionary> 
                <Style x:Key="ActiveTrackStyle" TargetType="Rectangle"> 
                    <Setter Property="Height" Value="9" /> 
                    <Setter Property="Fill" Value="Red" /> 
                </Style> 
            </ResourceDictionary> 
        </Grid.Resources> 
        <editors:SfRangeSlider 
            Width="300" 
            ActiveTrackStyle="{StaticResource ActiveTrackStyle}" 
            Maximum="100" 
            Minimum="0" 
            RangeEnd="60" 
            RangeStart="20" 
            ShowRange="True" /> 
    </Grid> 

Output

ActiveTrack

You can download the sample in this link.

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied