Hello,
the MinWidth property of the RadzenDataGridColumn seems to have no effect when using the Firefox-Browser. In Crome/Edge it works how expected. I built a simple example to demonstrate the problem:
<RadzenDataGrid TItem="Author" Data="AuthorList">
<Columns>
<RadzenDataGridColumn TItem="Author" Property="Name" Title="Name" MinWidth="200px"/>
<RadzenDataGridColumn TItem="Author" Property="Age" Title="Age" Width="200px"/>
<RadzenDataGridColumn TItem="Author" Property="BookTitle" Title="BookTitle" Width="200px" />
<RadzenDataGridColumn TItem="Author" Property="IsMVP" Title="IsMVP" Width="200px"/>
<RadzenDataGridColumn TItem="Author" Property="PublishedDate" Title="PublishedDate" Width="200px" />
</Columns>
</RadzenDataGrid>
Before browser window resizing:
After browser window resizing:
Firefox version is 114.0.1 (64-bit), but i have had this problem for a while.

