DataGrid default alternate colours

Hi - Just doing a trial on Blazor for our company whether this could be used for our FE dev.

I can't seem to do a simple DataGrid alternating row colour adjustment. They are come out as highlighted.

This is my head tag

The Grid tags are these:

        <RadzenDataGrid AllowFiltering="true" AllowAlternatingRows="true" FilterMode="FilterMode.Simple"
                        AllowSorting="true" PageSize="10" AllowPaging="true" PagerHorizontalAlign="HorizontalAlign.Left" ShowPagingSummary="true"
                        Data="@_flights" TItem="CapacityView" LogicalFilterOperator="LogicalFilterOperator.Or"
                        @bind-Value=@_flights >

Have played around with CSS but out of the box, the default should work.

Anyone has any idea why the alternate row colour is not appearing?

I have checked dev tools and all rows come out as "highlighted"

class="rz-state-highlight rz-data-row "

Hi @syed,

All rows are highlighted because of this @bind-Value=@_flights. It makes all rows selected.

Thanks for the quick reply and yes that has worked!
Syed