How to hide Defer Layout Update and Show Calculations as Columns options in the pivot table field list in WinForms PivotGridControl?
Hiding the defer layout update options
You
can hide the update check box and update button of the defer layout by using
the DeferLayoutUpdateCheckBox and DeferLayoutUpdateButton properties
in the pivot schema designer in our WinForms PivotGridControl. Refer to the following code sample to hide the defer layout options in the pivot table field list.
C#
this.pivotGridControl1.PivotSchemaDesigner.DeferLayoutUpdateButton.Visible = false;
this.pivotGridControl1.PivotSchemaDesigner.DeferLayoutUpdateCheckBox.Visible = false;Me.pivotGridControl1.PivotSchemaDesigner.DeferLayoutUpdateButton.Visible = False
Me.pivotGridControl1.PivotSchemaDesigner.DeferLayoutUpdateCheckBox.Visible = False
Pivot grid without displaying defer layout update options in pivot table field list
Hiding the show calculations as columns option
You can hide the show calculations as columns check box by using the ShowCalculationsAsColumnCheckBox property in the pivot schema designer. Refer to the following code sample to hide the show calculations as columns option in the pivot table field list.
C#
this.pivotGridControl1.PivotSchemaDesigner.ShowCalculationsAsColumnCheckBox.Visible = false;VB
Me.pivotGridControl1.PivotSchemaDesigner.ShowCalculationsAsColumnCheckBox.Visible = False

Pivot grid without displaying show calculations as columns option in pivot table field list
Conclusion
I
hope you enjoyed learning about how to hide defer layout update and show
calculations as columns options in the pivot table field list in PivotGridControl.
You
can refer to our WinForms PivotGrid feature tour page to know
about its other groundbreaking feature representations. You can also explore
our WinForms PivotGrid documentation to understand
how to manipulate data.
For current customers, you can check out our components from the License and
Download page. If you are new to Syncfusion, you can try our
30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comment section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!