Merge cells if the column's value same on DataGrid

Same as title.

In case the datagrid have values like this

ACol     BCol     CCol
1          a       A
1          a       B
1          b       A
2          a       A
2          b       B
3          a       A

I hope same cell should merge so i want to see like this

ACol     BCol     CCol
1          a       A
                   B
           b       A
2          a       A
2          b       B
3          a       A

If vertical align exists would be better.

Does Datagrid support this?
or it isn't yet?

Check this demo for more info:
https://blazor.radzen.com/datagrid-conditional-template

1 Like