Exporting in Windows Forms Pivot Chart

28 Apr 20211 minute to read

You can export pivot data to Microsoft Excel. The exported data interaction is enabled in the Excel.

  • C#
  • ExcelExport excelExport = new ExcelExport(this.pivotChart1, Syncfusion.XlsIO.ExcelVersion.Excel2010, Syncfusion.XlsIO.ExcelChartType.Column_Clustered);
    
                excelExport.Export(saveDialog.FileName);
  • VBNET
  • Dim excelExport As New ExcelExport(Me.pivotChart1, Syncfusion.XlsIO.ExcelVersion.Excel2010, Syncfusion.XlsIO.ExcelChartType.Column_Clustered)
    
    excelExport.Export(saveDialog.FileName)

    Sample: <InstalledLocation>\Syncfusion\EssentialStudio<InstalledVersion>\Windows\PivotChart.Windows\Samples\Exporting\PivotChartExport Demo\CS