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.v24.1.Extensions.dll
NuGet Package: DevExpress.Win.Reporting
Declaration
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 |
|
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