Skip to main content
A newer version of this page is available. .

ChartControlBase.ShowRibbonPrintPreviewDialog(Window, PrintSizeMode) Method

Creates a print document from a chart with the specified print size mode and displays the document using the modal Print Preview window with the Ribbon toolbar and the specified owner.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v19.1.dll

Declaration

public void ShowRibbonPrintPreviewDialog(
    Window owner,
    PrintSizeMode sizeMode
)

Parameters

Name Type Description
owner Window

The Print Preview owner.

sizeMode PrintSizeMode

The size mode which the chart must use when the chart control is printed.

Remarks

The Print Preview displays the chart as it will appear when printed. Note that the chart can be previewed and printed only if the DXPrinting Library is available.

To print the chart, use the ChartControlBase.PrintDirect and ChartControlBase.Print methods. To export the chart, use the appropriate ExportTo~ method (e.g., ChartControlBase.ExportToHtml, ChartControlBase.ExportToPdf, etc.)

See Also