JJ
Jisha Joy
Syncfusion Team
July 27, 2009 11:19 AM UTC
Hi Lorenzo,
To have stacked headers also in the child groups, set ChildGroupOptions.ShowStackedHeaders to true, provided that ShowColumnHeaders is also set to true.
this.gridGroupingControl1.ChildGroupOptions.ShowColumnHeaders = true;
this.gridGroupingControl1.ChildGroupOptions.ShowStackedHeaders = true;
Also you could hide the stacked column headers for specific column groups by setting the GroupByOptions.ShowStackedHeaders property to false. See the code:
this.gridGroupingControl1.TableDescriptor.Columns["OrderID"].GroupByOptions.ShowStackedHeaders = false;
Please let me know if this helps.
Regards,
Jisha