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

PivotGridControl.DataProcessingEngine Property

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

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v19.1.dll

Declaration

public DataProcessingEngine DataProcessingEngine { get; set; }

Property Value

Type Description
DataProcessingEngine

A 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.

Remarks

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

Note

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the DataProcessingEngine property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also