The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Is it at all possible to resize columns or rows (using ResizeToFit or some other method) using a minimal width or height. Maybe it can be obtained by setting some MinimalWidth-like property on a column but I cannot seem to find such a property
ADAdministrator Syncfusion Team December 4, 2003 02:46 PM UTC
There is a GridResizeToFitOptions.NoShrink flag that you can set when you call ResizeToFit. This should prevent the width from shrinking during a ResizeToFit call. So, then if you somehow set the initial size of your column to be your minimum size (either using grid.DefaultColWidth or grid.Model.ColWidths[col]), then this may effectively implement a minimum size.