Grouping in Code
Grouping
To group data by the values of the specified column at runtime, do one of the following:
Specify the column’s GridColumnBase.GroupIndex property. This property specifies whether or not the column takes part in grouping, and at which level it takes part in grouping.
grid.Columns["UnitPrice"].GroupIndex = 0;
Use the GridControl.GroupBy method.
grid.GroupBy("UnitPrice");
Ungrouping
To ungroup data by the values of a single column, do one of the following:
- Set the column’s GridColumnBase.GroupIndex property to -1.
- Call the GridControl.UngroupBy method.
To ungroup the grid, use the GridControl.ClearGrouping method.