Hi
Attached SummaryCellsTextOverlap.zip has source code files and also has GroupTextOverlap.PNG for existing and expected results.
I am trying to do sum aggragation on ID and group by on Abbreviation colums. Right now in result, Abbreviation group by text is overlaping other summary cells (IDName and ID).
Is there a way to fit the group by text in the first cell?. Check GroupTextOverlap.PNG for expected result.
Can you modify the attached source with solution and post in this.
Thanks in advance.
Hello,
The GroupBy header that contains the column value is not limited to the width of the column. What you can do is to implement IGroupByEvaluator interface and customize the group header any way you like.
I have modified your project (attached). I added a class named "CustomGroupByEvaluator", and in XAML find my changes denoted as:
<!-- CHANGES start:-->
<!-- CHANGES end:-->
I included some comments, and if you have any other questions feel free to ask.
Sam
Thansk for the response.
I am looking for following.
Group by cell should show text which fits (Remaining text can be truncated) in.
On resisze of Group by Column, group cell should show text which fits (Remaining text can be truncated) in.
Check the attached image for expected result.
Let me know if this is not clear.