Skip to main content

How to: Display a List View as a Pivot Grid Table and Chart

  • 3 minutes to read

This topic demonstrates how to display a default List View as a pivot table in XAF applications:

Note

ASP.NET Core Blazor applications do not support the Pivot Grid Module.

The article uses a sample Order business object with the Customer, Product Name, Product Category, Price, and Units Purchased fields.

PivotGridBefore1

You can display the Order List View as a pivot table by adding the Pivot Grid Module to your application and replacing the default Grid List Editor with the Pivot Grid List Editor. The screenshot below demonstrates the result.

PivotGridModuleResult

You can see examples with Pivot Grid List Editors in the FeatureCenter demo shipped with XAF. The default location of the application is %PUBLIC%\Documents\DevExpress Demos 25.2\Components\XAF\FeatureCenter.NET.XPO.

Add the Pivot Grid Module

  • You can add modules to your application when you use the Template Kit to create a new XAF solution. Select modules in the Additional Modules section.

  • To add an extra module in code, add it to the XafApplication.Modules or ModuleBase.RequiredModuleTypes list (adding a reference to the module assembly is insufficient).

Change the List View’s List Editor

  1. Double-click the Module.Win project’s Model.DesignedDiffs.xafml file to invoke the Model Editor for this project.
  2. Navigate to the Views | Order_ListView node. In the EditorType (IModelListView.EditorType) property’s drop-down, select “DevExpress.ExpressApp.PivotGrid.Win.PivotGridListEditor” instead of XAF’s default List Editor.

    PivotGrid008-ChangeEditorWin

Specify Pivot Grid Settings

  1. Invoke the Model Editor from the Module.Win project.
  2. Navigate to the Views | Order_ListView_PivotGrid | PivotSettings node.

    PivotGrid010-SettingsAgnostic

  3. Set the IPivotSettings.ShowChart property value to true and IPivotSettings.CustomizationEnabled to false.
  4. Select the IPivotSettings.Settings property and click the ellipsis button to invoke the PivotGrid Designer.

    PivotGrid012-AgnosticSettingsEllipsis

  5. In the PivotGrid Designer, navigate to Main | Layout. Place the Product Name field in the Row Header Area, the Customer field in the Column Header Area area, and the Units Purchased field into the Data Header Area – as shown in the screenshot. Drag the Product Category and Price fields onto the Filter Header Area area to exclude them from the pivot table. This yields a pivot grid table that summarizes sales by customer.

    PivotGrid013-Designer

Run the Application

  1. Run the Windows Forms application and select the Order Navigation Item to display the pivot table.

    PivotGrid020-settings

Tip

For additional information on working with pivot tables, refer to the Pivot Grid control article (Windows Forms) and watch the DevExpress Pivot Grid: Getting Started (Windows Forms) video.