Hi Samuel,
We provide 2 properties in the GroupByControl class:
1) Title: Which represents the text to display when there is at least one group.
2) NoGroupTitle: Which represents the text to display when there is no grouping.
In XAML, you must do the folowing in order to change the text:
<sldg:DataGridControl UseDefaultHeadersFooters="False">
<sldg:DataGridControl.FixedHeaders>
<sldg:GroupByControl
NoGroupTitle="The text to display when there is no group."
Title="The text to display when there is at least one group." />
</sldg:DataGridControl.FixedHeaders>
...
</sldg:DataGridControl>
Please note that by putting UseDefaultHeadersFooters="False" in order to manually add and configure the GroupByControl, we also remove the ColumnManagerRow that was added by default.
To make the ColumnManagerRow reappear, our FixedHeader becomes:
<sldg:DataGridControl.FixedHeaders>
<sldg:GroupByControl
NoGroupTitle="The text to display when there is no group."
Title="The text to display when there is at least one group." />
<sldg:ColumnManagerRow />
</sldg:DataGridControl.FixedHeaders>
Regards,
Alain Jreij,
Web Developer,
Xceed Software Inc