Skip to main content
A newer version of this page is available. .

DesignSettings.PivotGridOptions Property

Enables you to customize the Pivot Grid’s behavior in a reporting application for WinForms.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v19.1.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public PivotGridDesignOptions PivotGridOptions { get; }

Property Value

Type Description
PivotGridDesignOptions

A PivotGridDesignOptions object.

Property Paths

You can access this nested property as listed below:

Object Type Path to PivotGridOptions
DesignSettings
.Default .PivotGridOptions

Remarks

The following example demonstrates how to hide the Load Data from XML tab from the Pivot Grid Designer.

using DevExpress.XtraReports.Configuration;
// ...

static void Main() {
    DesignSettings.Default.PivotGridOptions.ShowLoadXmlDataDesignerTab = false;
    //...
}
See Also