How to increase the Pivot Grid performance in WPF?
We would like to suggest you to set the below property to improve the performance of WPF Pivot Grid.
1)Set AutoSizeOption of the pivotgrid to None.
C#
this.pivotGrid1.AutoSizeOption = Syncfusion.Windows.Controls.PivotGrid.GridAutoSizeOption.None;
2)Set EnableOnDemandCalculations property of the PivotEngine to true.
C#
this.pivotGrid1.PivotEngine.EnableOnDemandCalculations = true;