we are currently using the following to initialize grouping: <tk:GridViewColumn.AggregateFunctions> <tk:CountFunction ResultFormatString="{}{0} Items" /></tk:GridViewColumn.AggregateFunctions>
Several items that we group by just return numbers, it does not make a lot of since as to what exactly is being grouped we get headers like 234 236 Items
We would like to be able to do something like this:
<tk:GridViewColumn.AggregateFunctions>
<tk:CountFunction ResultFormatString="{}{1}:{2} - {0} Items" />
</tk:GridViewColumn.AggregateFunctions>
Where we get something like this Product Code: 234 - 236 Items
1 == Header == Product Code
2 == Value == 234
3== Count ==236
Is this possible?