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

MVCxPivotGridWebOptionsData.DataProcessingEngine Property

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

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public PivotDataProcessingEngine DataProcessingEngine { get; set; }

Property Value

Type Description
PivotDataProcessingEngine

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:

Object Type Path to DataProcessingEngine
PivotGridSettings
.OptionsData.DataProcessingEngine

Remarks

If necessary, you can change the engine used by default (DataProcessingEngine is set to PivotDataProcessingEngine.Default) using the static ASPxPivotGrid.DefaultDataProcessingEngine property.

Note

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

See Also