You need to add a column to the SortedColumns collection in the group:
private void SwitchGroupByFor(string key)
{
var band = grid.DisplayLayout.Bands[0];
var sortedColumns = band.SortedColumns;
sortedColumns.Add(key, false, true);
}
Hth
source
share