Pivot Grid for WPF - Custom Group Intervals
This example shows how to implement custom group intervals in Pivot Grid to group axis values.
Files to Look at
Overview
The Product Groups calculated field is bound to the following expression:
Iif(Substring([fieldProductName], 0, 1) < 'F', 'A-E', Substring([fieldProductName], 0, 1) < 'T', 'F-S', 'T-Z')
The expression groups the Product Name field's values into three large ranges: A-E, F-S, and T-Z according to product's start characters.
