Dear Telerik Team,
I am using telerik Rad Grid View control and having issue with below code.
I am trying to set the background color of a row on mouse over.
Issue is On mouse over below Setter property 'Background' does not set the background color of the row instead it sets the border color. Pl advise on the correct Implementation.
<telerik:RadGridView x:Name="radGridView" Margin="8,100,0,0"
ItemsSource="{Binding Source={StaticResource AuthorsData}}"
IsFilteringAllowed="True"
AutoGenerateColumns="True" Grid.Column="1" >
<telerik:RadGridView.RowStyle>
<Style TargetType="telerik:GridViewRow">
<Setter Property="MinHeight" Value="20"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Green"/>
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</Style.Triggers>
</Style>
</telerik:RadGridView.RowStyle>
</telerik:RadGridView>
Thanks,
Vaibhav.