/how-to-implement-custom-group-intervals-e2132

This example shows how to implement custom group intervals in Pivot Grid to group axis values.

Primary LanguageC#OtherNOASSERTION

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.

pivot-custom-group-intervals

Documentaton

Grouping

More Examples

Pivot Grid for WPF - How to Group Date-Time Values