Example: The Example for Virtual Scrolling in Blazor DataGrid Component.
I have added the ColumnChooser as:
<EjsGrid DataSource="@GridData" ShowColumnChooser="true" Toolbar="@(new List<string>() { "ColumnChooser" })"
Height="410" Width="auto" EnableVirtualization="true" EnableColumnVirtualization="true">
And when I then sort in columns and just want to see Column "Playername", "Year", "Stint"
the width stays with the original size, so the scrollbars stays:
Even though the 3 columns would fit the grid.
How do I make the 3 choosen columns fit the grid?