GridGroupingControl and hide column name

Hi together, I have a gridgroupingcontrol which is bound to a DataSet (via DataSource property). Now consider there are 4 columns in the dataset like A, B, C, D. Now when the grid is displayed I want to hide the first column name (just be blank). But this doesn''t work - I get alway a default name. To understand my problem, I want to get a grid view which looks like this: ______|_B_|_C_|_D_| test__|___|___|___| test2_|___|___|___| test3_|___|___|___| As you can see the first column has no header name (But rows). First I thought I can solve this with the rowheader column - but this column is a special one which is not really good to choose I think. Any ideas?? Kind regards Franz

1 Reply

AD Administrator Syncfusion Team August 12, 2005 11:59 PM UTC

Try setting the HeaderText to one space. this.gridGroupingControl1.TableDescriptor.Columns["Col0"].HeaderText = " ";

Loader.
Up arrow icon