Skip to main content
All docs
V23.2

DashboardExporter.ExportToImage(Stream, String, Nullable<Size>, DashboardState, DashboardImageExportOptions) Method

Exports a dashboard’s data to the specified Image file.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public void ExportToImage(
    Stream dashboardXml,
    string outputFilePath,
    Size? dashboardSize = null,
    DashboardState state = null,
    DashboardImageExportOptions options = null
)

Parameters

Name Type Description
dashboardXml Stream

A stream that contains the exported dashboard file.

outputFilePath String

The path to the output Image file.

Optional Parameters

Name Type Default Description
dashboardSize Nullable<Size> null

The dashboard’s size in pixels.

state DashboardState null

A DashboardState object that specifies the dashboard state to be applied to the resulting document.

options DashboardImageExportOptions null

A DashboardImageExportOptions object that contains Image-specific options.

See Also