AD
Administrator
Syncfusion Team
March 5, 2007 05:31 PM UTC
Hi Manish,
To change the individual column width manually, you could try this code snippet:
this.gridGroupingControl1.TableDescriptor.AllowCalculateMaxColumnWidth = false;
this.gridGroupingControl1.TableDescriptor.Columns["ColumnName"].Width = 175;
//For paticular table.
this.gridGroupingControl1.GetTableDescriptor("TableName").Columns["ColumnName"].Width=50;
Best regards,
Haneef