I am attempting to ungroup a grid that is initialized as being grouped. I have tried the following methods:
#1
Grid.GroupSettings = new GridGroupSettings();
Grid.Refresh();
#2
Grid.GroupSettings.Columns = null;
Grid.Refresh();
#3
await Grid.ClearGrouping();
None of the above methods result in the grid being ungrouped.