Skip to main content
A newer version of this page is available. .
All docs
V21.2

HeatmapPrintOptions Class

Contains print options for the Heatmap control.

Namespace: DevExpress.Xpf.Charts.Heatmap

Assembly: DevExpress.Xpf.Charts.v21.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public class HeatmapPrintOptions :
    Freezable

The following members return HeatmapPrintOptions objects:

Remarks

The HeatmapPrintOptions class introduces the SizeMode property that specifies the size mode in which the heatmap chart is printed or exported.

Use one of the methods below to print the Heatmap control:

The following methods allow you to export the Heatmap control to different formats:

Example

The following code exports a heatmap to a PDF file:

<dxh:HeatmapControl x:Name="heatmap">
    <dxh:HeatmapControl.PrintOptions>
        <dxh:HeatmapPrintOptions SizeMode="ProportionalZoom" />
    </dxh:HeatmapControl.PrintOptions>
</dxh:HeatmapControl>
using DevExpress.XtraPrinting;

    private void SimpleButton_Click(object sender, RoutedEventArgs e) {
        PdfExportOptions exportOptions = new PdfExportOptions();
        exportOptions.ConvertImagesToJpeg = false;
        exportOptions.DocumentOptions.Title = "Sales by Categories";
        heatmap.ExportToPdf("D://heatmap-export.pdf", exportOptions);
    }

Inheritance

See Also