CustomExportEventArgs.GetItemData(String) Method
In This Article
Returns multidimensional data for the specified dashboard item.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.2.Core.dll
NuGet Package: DevExpress.Dashboard.Core
#Declaration
public MultiDimensionalData GetItemData(
string dashboardItemName
)
#Parameters
Name | Type | Description |
---|---|---|
dashboard |
String | The dashboard item’s component name. |
#Returns
Type | Description |
---|---|
Multi |
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