Skip to main content

HierarchicalChartControlBase.ExportToPdf(Stream, PdfExportOptions) Method

Exports a treemap/sunburst to the specified stream in the PDF format using the specified export options.

Namespace: DevExpress.XtraTreeMap

Assembly: DevExpress.XtraTreeMap.v23.2.UI.dll

NuGet Package: DevExpress.Win.TreeMap

Declaration

public void ExportToPdf(
    Stream stream,
    PdfExportOptions options = null
)

Parameters

Name Type Description
stream Stream

A Stream descendant class object to which the created PDF file should be sent.

Optional Parameters

Name Type Default Description
options PdfExportOptions null

The object that stores options for export to the PDF format.

Remarks

To print the document immediately using the default printer without invoking any dialogs, use the HierarchicalChartControlBase.Print method.

To show the standard Print dialog, use the HierarchicalChartControlBase.ShowPrintDialog method. The dialog allows end-users to print the chart, select the printer (if required), specify the range of pages to print, the number of copies, etc.

To display the DevExpress Print Preview, use one of the following methods.

Method Description
HierarchicalChartControlBase.ShowPrintPreview Creates the print document and displays the Print Preview of the document.
HierarchicalChartControlBase.ShowRibbonPrintPreview Creates the print document and displays the Print Preview with the Ribbon toolbar of the document.

To export the treemap or sunburst, use the appropriate ExportTo method (e.g., HierarchicalChartControlBase.ExportToPdf, HierarchicalChartControlBase.ExportToImage, HierarchicalChartControlBase.ExportToXls, HierarchicalChartControlBase.ExportToXlsx, HierarchicalChartControlBase.ExportToRtf, HierarchicalChartControlBase.ExportToMht.)

Important

The chart can be previewed, printed and exported only if the Printing-Exporting Library is available. Make sure you add a reference to the DevExpress.XtraPrinting.v23.2 assembly.

See Also