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

ASPxPivotGrid.DefaultDataProcessingEngine Property

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

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

public static PivotDataProcessingEngine DefaultDataProcessingEngine { 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.

Remarks

To set the data processing engine for the specified ASPxPivotGrid control, use the PivotGridOptionsData.DataProcessingEngine property (which is accessible through ASPxPivotGrid.OptionsData). The DefaultDataProcessingEngine property allows you to change the engine used by default (PivotGridOptionsData.DataProcessingEngine is set to PivotDataProcessingEngine.Default).

See Also