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.
ADAdministrator Syncfusion Team January 26, 2004 08:12 PM UTC
Try setting the GridStyleInfo.Enabled property to false for the column. In a GridDataBoundGrid, you would do this in either
grid.GridBoundColumns[col].StyleInfo.Enabled = false;
or
grid.Binder.InternalColumns[col].StyleInfo.Enabled = false;
depending upon whether you have explicitly added GridBoundColumns to your grid.