Skip to main content
All docs
V25.1
  • DashboardExporter.ExportDashboardItemToImage(Stream, String, String, Nullable<Size>, DashboardState, DashboardImageExportOptions) Method

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

    Namespace: DevExpress.DashboardCommon

    Assembly: DevExpress.Dashboard.v25.1.Core.dll

    NuGet Package: DevExpress.Dashboard.Core

    Declaration

    public void ExportDashboardItemToImage(
        Stream dashboardXml,
        string dashboardItemName,
        string outputFilePath,
        Size? dashboardItemSize = null,
        DashboardState state = null,
        DashboardImageExportOptions options = null
    )

    Parameters

    Name Type Description
    dashboardXml Stream

    A stream that contains the dashboard from which the dashboard item’s data is exported.

    dashboardItemName String

    The component name of the dashboard item.

    outputFilePath String

    The path to the output Image file.

    Optional Parameters

    Name Type Default Description
    dashboardItemSize Nullable<Size> null

    A dashboard item’s size set 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