DataGrid Grouping with Dynamic Data

Hi,
I would like to know if Grouping is supported in DataGrid while using Dynamic Data
Regards,
Uday


Thanks , it works . Is there a way similar to Grouping API where you can preset columns to be grouped in onRender method by creating the GroupDescriptor like below

void OnRender(DataGridRenderEventArgs args)
{
if(args.FirstRender)
{
args.Grid.Groups.Add(new GroupDescriptor(){ Property = "Title", SortOrder = SortOrder.Descending });
StateHasChanged();
}
}

In the same demo:

Thank you. Appreciate the quick response