Skip to main content
.NET 6.0+

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 23.2\Components\XAF\FeatureCenter.NETFramework.XPO.

Add the Pivot Grid Module

  1. Double-click the Module.Win project’s WinModule.cs file to invoke the Module Designer for this project.
  2. Drag the PivotGridWindowsFormsModule item from the Toolbox onto the Required Modules panel.

    PivotGrid006-AddModuleToWin

  3. Double-click the Module.Web project’s WebModule.cs file to invoke the Module Designer for this project.
  4. Drag the PivotGridAspNetModule item from the Toolbox onto the Required Modules panel.

    PivotGrid007-AddModuleToWeb

  5. Save changes.
  6. Rebuild your solution.

Note

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

  3. Double-click the Module.Web project’s Model.DesignedDiffs.xafml file to invoke the Model Editor for this project.
  4. Navigate to the Views | Order_ListView node. In the EditorType property’s drop-down, select DevExpress.ExpressApp.PivotGrid.Web.ASPxPivotGridListEditor instead of XAF’s default List Editor.

    PivotGrid-009ChangeWebEditor

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

  6. In the same manner, specify the Pivot Grid Module‘s settings in your Module.Web project.

Run the Application

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

    PivotGrid020-settings

  2. Run the ASP.NET Web Forms application and check that the Order pivot table is also available.

    PivotGrid016-WebApp

Tip

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