Skip to main content
A newer version of this page is available. .
All docs
V20.2

CustomExportEventArgs.GetItemData(String) Method

Returns multidimensional data for the specified dashboard item.

Namespace: DevExpress.DashboardCommon

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

NuGet Packages: DevExpress.Dashboard.Core, DevExpress.WindowsDesktop.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