DevExpress.Win.PivotGrid 26.1.5-pre-26227

DevExpress WinForms Pivot Grid

The DevExpress.Win.PivotGrid package includes the DevExpress Pivot Grid control for WinForms applications. Use the PivotGridControl to summarize, organize, and analyze large volumes of data in an Excel-like cross-tabular layout.

The control allows users to rearrange fields, group and filter data, calculate summaries, drill down to underlying records, apply conditional formatting, and export analysis results.

Key Features

  • Data Summaries - Calculates totals and summaries such as Sum, Average, Count, Minimum, and Maximum.
  • Data Shaping - Supports sorting, grouping, filtering, field reordering, and Top N value analysis.
  • Drill-Down - Retrieves the source records used to calculate an individual summary value.
  • Conditional Formatting - Highlights important values with appearance rules, color scales, data bars, and icons.
  • Data Binding - Connects the Pivot Grid to collections, databases, server-mode sources, Excel files, and OLAP cubes.
  • Layout Persistence - Saves and restores field positions, sorting, grouping, filtering, and other layout settings.
  • Printing and Export - Prints Pivot Grid data and exports it to PDF, HTML, MHT, RTF, DOCX, TXT, CSV, XLS, and XLSX formats.

Examples

Install the DevExpress.Win.PivotGrid package:

dotnet add package DevExpress.Win.PivotGrid

For .NET projects, additionally install the DevExpress.Win.Design package.

Add the Pivot Grid control from the Toolbox to a WinForms form.

Display and Configure a Pivot Grid

The following example assumes that a PivotGridControl named pivotGridControl1 has already been added to a WinForms form.

using DevExpress.XtraPivotGrid;
using System.Collections.Generic;
using System.Windows.Forms;

public partial class MainForm : Form {
    public MainForm() {
        InitializeComponent();

        pivotGridControl1.DataSource = new List<Sale> {
            new("Europe", "Beverages", 1200m),
            new("Europe", "Food", 850m),
            new("North America", "Beverages", 1500m),
            new("North America", "Food", 1100m)
        };

        pivotGridControl1.Fields.Add(
            new PivotGridField(nameof(Sale.Region), PivotArea.RowArea));

        pivotGridControl1.Fields.Add(
            new PivotGridField(nameof(Sale.Category), PivotArea.ColumnArea));

        var salesField = new PivotGridField(
            nameof(Sale.Amount),
            PivotArea.DataArea) {
            Caption = "Sales",
            SummaryType = PivotSummaryType.Sum
        };

        pivotGridControl1.Fields.Add(salesField);
    }
}

public record Sale(string Region, string Category, decimal Amount);

Users can drag field headers between the row, column, data, and filter areas to change how the Pivot Grid organizes and summarizes data.

Export Pivot Grid Data to XLSX

The following example exports the current Pivot Grid data and layout to an XLSX file.

using DevExpress.XtraPivotGrid;

private void ExportToXlsx(string filePath) {
    var options = new PivotXlsxExportOptions {
        ExportType = DevExpress.Export.ExportType.DataAware
    };

    pivotGridControl1.ExportToXlsx(filePath, options);
}

The data-aware export mode creates an editable Excel document and preserves Pivot Grid data-shaping information where supported.

Always validate and normalize file paths obtained from external or untrusted sources before you use them for export.

Save and Restore the Pivot Grid Layout

The following example saves the Pivot Grid layout to an XML file and restores it later.

private void SaveLayout(string filePath) {
    pivotGridControl1.SaveLayoutToXml(filePath);
}

private void RestoreLayout(string filePath) {
    pivotGridControl1.RestoreLayoutFromXml(filePath);
}

Assign a unique Name to each Pivot Grid field to ensure that field settings are restored correctly.

Evaluation Period, Pricing Options, and Licensing Terms

Whether you own a license or want to start a 30-day evaluation period, register your DevExpress license key. To obtain your key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free.

For additional registration instructions, see License Key for DevExpress Products.

If you purchase a license after evaluating the product, re-register your updated DevExpress license key to remove evaluation version warnings and messages.

This package is included in the following commercial subscriptions:

See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.

Documentation

Software Bill of Materials (SBOM)

To access SBOM files for DevExpress packages, see Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.

See Also: Information Security | Security - What You Need to Know

Useful Online Resources

Showing the top 20 packages that depend on DevExpress.Win.PivotGrid.

Packages Downloads
DevExpress.Win.PivotGrid.ru
This package provides the Pivot Grid functionality. Pivot Grid is a multi-dimensional data analysis tool that represents its data in a cross-tabular format.
27
DevExpress.Win.Reporting
This package implements the functionality related to the DevExpress Report Designer and Report Viewer WinForms controls.
13
DevExpress.Win
The package implements the core functionality for DevExpress WinForms controls and components from the following suites: Data Grid, Editors, Vertical Grid, Pivot Grid, Tree List, Layout and Data Layout Managers, Bars, Navigation Bar, Printing Library.
11
DevExpress.Win
The package implements the core functionality for DevExpress WinForms controls and components from the following suites: Data Grid, Editors, Vertical Grid, Pivot Grid, Tree List, Layout and Data Layout Managers, Bars, Navigation Bar, Printing Library.
10
DevExpress.Win.PivotGrid.es
This package provides the Pivot Grid functionality. Pivot Grid is a multi-dimensional data analysis tool that represents its data in a cross-tabular format.
10
DevExpress.ExpressApp.PivotGrid.Win
The Pivot Grid module for XAF WinForms apps.
10
DevExpress.Win
The package implements the core functionality for DevExpress WinForms controls and components from the following suites: Data Grid, Editors, Vertical Grid, Pivot Grid, Tree List, Layout and Data Layout Managers, Bars, Navigation Bar, Printing Library.
9
DevExpress.Win.Dashboard
This package implements the functionality related to the DevExpress DashboardDesigner and DashboardViewer controls, which are designed to create and display dashboards within WinForms applications.
9
DevExpress.ExpressApp.EasyTest.WinAdapter
The core functionality to run EasyTest functional tests for XAF WinForms apps.
8
DevExpress.Win.PivotGrid.es
This package provides the Pivot Grid functionality. Pivot Grid is a multi-dimensional data analysis tool that represents its data in a cross-tabular format.
8
DevExpress.Win.Reporting
This package implements the functionality related to the DevExpress Report Designer and Report Viewer WinForms controls.
8
DevExpress.ExpressApp.PivotChart.Win
The Pivot Chart module for XAF WinForms apps.
8
DevExpress.ExpressApp.PivotGrid.Win
The Pivot Grid module for XAF WinForms apps.
8
DevExpress.Win.Dashboard
This package implements the functionality related to the DevExpress DashboardDesigner and DashboardViewer controls, which are designed to create and display dashboards within WinForms applications.
8
DevExpress.Win.PivotGrid.ja
This package provides the Pivot Grid functionality. Pivot Grid is a multi-dimensional data analysis tool that represents its data in a cross-tabular format.
8
DevExpress.ExpressApp.EasyTest.WinAdapter
The core functionality to run EasyTest functional tests for XAF WinForms apps.
7
DevExpress.Win.PivotGrid.de
This package provides the Pivot Grid functionality. Pivot Grid is a multi-dimensional data analysis tool that represents its data in a cross-tabular format.
7

.NET Framework 4.6.2

.NET 8.0

Version Downloads Last updated
26.1.5-pre-26227 1 08/19/2026
26.1.4 0 08/07/2026
26.1.4-pre-26200 1 08/19/2026
26.1.4-pre-26190 1 08/19/2026
26.1.4-pre-26179 1 08/19/2026
26.1.3 1 08/19/2026
25.2.9 1 08/20/2026
25.2.8 1 08/19/2026
25.2.7 1 08/19/2026
25.2.6 1 08/19/2026
25.2.5 0 03/02/2026
25.2.4 1 02/19/2026
25.2.3 4 01/15/2026
25.1.13 1 08/19/2026
25.1.12 1 08/19/2026
25.1.11 1 08/19/2026
25.1.10 1 08/19/2026
25.1.9 0 03/02/2026
25.1.8 2 01/20/2026
25.1.7 3 01/15/2026
25.1.6 4 12/17/2025
25.1.5 4 12/17/2025
25.1.4 7 12/17/2025
25.1.3 4 09/01/2025
24.1.4 9 07/22/2024
24.1.3 8 07/24/2024
23.1.6 8 12/01/2023
23.1.3 7 07/04/2023
21.2.3 12 06/19/2023