How to Print the PivotChart
9 Dec 2019 / 1 minute to read
The PivotChart has in-built support to print the pivotal data. This can be achieved by using the Print method available in the PrintDocument extension of PivotChart component.
PrintDialog printDialog1 = new System.Windows.Forms.PrintDialog();
printDialog1.Document = this.pivotChart1.PrintDocument;
if (printDialog1.ShowDialog() == DialogResult.OK)
{
this.pivotChart1.PrintDocument.Print();
}
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page