CustomExportEventArgs.GetItemData(String) Method
Returns multidimensional data for the specified dashboard item.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v25.1.Core.dll
NuGet Package: DevExpress.Dashboard.Core
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| dashboardItemName | String | The dashboard item’s component name. |
Returns
| Type | Description |
|---|---|
| MultiDimensionalData | The multidimensional data. |
Remarks
The following code snippet gets multidimensional data for a Grid dashboard item:
private void CustomExport(object sender, CustomExportEventArgs e)
{
//...
MultiDimensionalData data = e.GetItemData("gridDashboardItem1");
//...
}
See Also