Category / Section
How to Load the existing Pivot Engine into the Pivot Grid
1 min read
To load external PivotEngine you need to set the property IsExternalEngine to true. This allows you to set the PivotEngine to PivotGridControl. We suggest you to set the IsExternalEngine to false once you assign the PivotEngine to PivotGridControl. The following code explains the same.
C#
this.pivotGridControl1.IsExternalEngine = true; this.pivotGridControl1.PivotEngine = this.pivotGrid1.PivotEngine; this.pivotGridControl1.IsExternalEngine = false;
Figure: Pivot Grid shows loading of data from existing pivot engine