DashboardExporter.ExportDashboardItemToPdf(String, String, String, Nullable<Size>, DashboardState, DashboardPdfExportOptions) Method
Exports a dashboard item’s data to the specified PDF file.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.1.Core.dll
NuGet Package: DevExpress.Dashboard.Core
Declaration
public void ExportDashboardItemToPdf(
string dashboardXmlPath,
string dashboardItemName,
string outputFilePath,
Size? dashboardItemSize = null,
DashboardState state = null,
DashboardPdfExportOptions options = null
)
Parameters
Name | Type | Description |
---|---|---|
dashboardXmlPath | String | The path to the dashboard XML file. |
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 | DashboardPdfExportOptions | null | A DashboardPdfExportOptions object that contains PDF-specific options. |
See Also