AD
Administrator
Syncfusion Team
June 1, 2004 03:52 PM UTC
You set the width of a particular column using code like
this.grid.Model.ColWidths[2] = 30;
If you are doing it while the grid is not visible, then you should also set:
this.grid.AllowResizeToFit = false;
to turn off the grid default sizing so it does not interfere with your explicit sizing.