Reputation: 2210
I got a request to change the devExpress pivot grid, so that it shows only one column per size, the values should be displayed as rows. Please see the images as its hard to explain in writing.
Current setup:
Desired output (done in excel):
Upvotes: 2
Views: 1750
Reputation: 6621
You can use PivotGridOptionsDataField.Area
property. If you set this value to PivotDataArea.RowArea
then you get what you want:
Upvotes: 3