Change the orientation of WinForms PivotGridControl while printing.
Orientation
In order to print the WinForms PivotGridControl with specified orientation, the Landscape property of the PivotGridPrintDocumentAdv class can be used. The default orientation of the grid is Portrait mode.
C#
PivotGridPrintDocumentAdv printPivotGrid = new PivotGridPrintDocumentAdv(this.pivotGridControl1);
//Changes the default "Portrait orientation" of the grid.
printPivotGrid.DefaultPageSettings.Landscape = true;
Dim printPivotGrid As New PivotGridPrintDocumentAdv(Me.pivotGridControl1)
'Changes the default "Portrait orientation" of the grid.
printPivotGrid.DefaultPageSettings.Landscape = True
Samples:
Conclusion
I hope you enjoyed learning about how to change the orientation of PivotGridControl while printing the Pivot Grid.
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 example to understand how to present and manipulate data.
For current customers, you can check out our components from the License and Downloads 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 comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!