Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridControl.DefaultDataProcessingEngine Property

Gets or sets a default engine used to perform data processing in the pivot grid.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public static DataProcessingEngine DefaultDataProcessingEngine { get; set; }

#Property Value

Type Description
DataProcessingEngine

A PivotGridControl.DataProcessingEngine enumeration value that specifies an engine used to perform data processing in the pivot grid.

Available values:

Name Description
Default

A default data processing engine. You can specify the default engine explicitly using the PivotGridControl.DefaultDataProcessingEngine property.

Legacy

A legacy data processing engine.

LegacyOptimized

A legacy data processing engine that includes optimizations for basic operations.

Optimized

Improves performance and provides an extended set of aggregations and window functions. Allows you to use the Data Binding API for PivotGrid fields. Does not support legacy features and behavior. See the Optimized Calculation Engine article for more information.

#Remarks

To set the data processing engine for the specified PivotGridControl, use the PivotGridControl.DataProcessingEngine property. The DefaultDataProcessingEngine property allows you to change the engine used by default (PivotGridControl.DataProcessingEngine is set to DataProcessingEngine.Default).

See Also