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

PivotGridOptionsData.DataProcessingEngine Property

Gets or sets an engine used to perform data processing (aggregation, summarization, etc.) in the pivot grid.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v18.2.Core.dll

Declaration

[DefaultValue(PivotDataProcessingEngine.Default)]
[XtraSerializableProperty]
public PivotDataProcessingEngine DataProcessingEngine { get; set; }

Property Value

Type Default Description
PivotDataProcessingEngine **Default**

A PivotDataProcessingEngine 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 DefaultDataProcessingEngine property exposed by the control.

Legacy

A legacy data processing engine.

LegacyOptimized

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

Property Paths

You can access this nested property as listed below:

Library Object Type Path to DataProcessingEngine
WinForms Controls PivotGridControl
.OptionsData.DataProcessingEngine
ASP.NET Controls and MVC Extensions ASPxPivotGrid
.OptionsData.DataProcessingEngine
MVCxPivotGrid
.OptionsData.DataProcessingEngine
PivotGridSettings
.OptionsData.DataProcessingEngine
Reporting XRPivotGrid
.OptionsData.DataProcessingEngine

Remarks

If necessary, you can change the engine used by default (DataProcessingEngine is set to PivotDataProcessingEngine.Default) using the following properties:

Note

The DataProcessingEngine property is not in effect in server mode and for the OLAP data sources.

See Also