Skip to main content
All docs
V23.2

CustomExportEventArgs.GetItemData(String) Method

Returns multidimensional data for the specified dashboard item.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public MultiDimensionalData GetItemData(
    string dashboardItemName
)

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