Hi Team,
We are using RadStepProgressBar in our project, and we would like to change the selected color from Yellow to Blue. However, we have not been able to find a solution.
Here is the current XAML code:
<telerik:RadStepProgressBar
Background="AliceBlue"
VerticalAlignment="Top"
x:Name="stepProgressBar"
Grid.Row="0"
TrackFill="LightGreen"
SelectedIndex="{Binding SelectedIndex, Mode=TwoWay}"
ItemsSource="{Binding OrderSteps}"
DisplayMemberPath="Name"
AnimationDuration="0.6"
Margin="0 0 0 0">
<telerik:RadStepProgressBar.ItemContainerStyle>
<Style TargetType="telerik:RadStepProgressBarItem">
<Setter Property="TextBlock.TextAlignment" Value="Center" />
<Setter Property="TextBlock.Foreground" Value="White" />
<Setter Property="ShapeStroke" Value="Black" />
<Setter Property="Background" Value="DarkSlateGray" />
<Setter Property="TextBlock.TextAlignment" Value="Center" />
</Style>
</telerik:RadStepProgressBar.ItemContainerStyle>
</telerik:RadStepProgressBar>
Could you please assist us in changing the selected color to Blue?
Thank you.