Hi,
After upgrade to 13.2.029 volume 2 pack last week( from 13.1.0.300), my grid's group column description is showing as empty. It used to show the "ColumnName: {Key} - {Count} Items", now its all empty. Is there any new flag I need to enable to make the group name show up again?
Here is the sample xaml I am using:
<syncfusion:SfDataGrid x:Name="datagrid"
AutoGenerateColumns="False"
EditTrigger="OnTap"
LiveDataUpdateMode="AllowDataShaping"
AllowEditing="True"
>
<syncfusion:SfDataGrid.GroupColumnDescriptions>
<syncfusion:GroupColumnDescription
ColumnName="Name" />
</syncfusion:SfDataGrid.GroupColumnDescriptions>
<syncfusion:SfDataGrid.Columns>
<syncfusion:GridTextColumn
Width="143"
HeaderText="ID"
MappingName="ID" />
<syncfusion:GridTextColumn
Width="143"
HeaderText="Score"
MappingName="Score" />
</syncfusion:SfDataGrid.Columns>
</syncfusion:SfDataGrid>