Skip to main content
All docs
V24.1

DashboardExporter.ExportDashboardItemToExcel(Stream, String, Stream, DashboardState, DashboardExcelExportOptions) Method

Exports a dashboard item’s data to the specified stream in Excel format.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public void ExportDashboardItemToExcel(
    Stream dashboardXml,
    string dashboardItemName,
    Stream outputStream,
    DashboardState state = null,
    DashboardExcelExportOptions 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.

outputStream Stream

A stream to which the created Excel file should be sent.

Optional Parameters

Name Type Default Description
state DashboardState null

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

options DashboardExcelExportOptions null

A DashboardExcelExportOptions object that contains Excel-specific options.

See Also