I dont see the horizontal scroll bar when data grid has various columns, please help me i dont know css style

Are you using the default Blazor template? It seems so. If yes try opening Shared/MainLayout.razor.css and changing

main {
    flex: 1;
}

to

main {
    flex: 1;
    width: 0;
}

Seems to be this issue.

1 Like