Method 1:
//Remove the VisibleColumns from the table descriptor collection
this.gridGroupingControl1.TableDescriptor.VisibleColumns.Remove("ColumnName");
Method 2:
//Hide the columns by setting the column width as
this.gridGroupingControl1.TableModel.Cols.Hidden["ColumnName"] = true;
Regards,
Adhi.