Skip to main content
A newer version of this page is available. .

DashboardItem Class

Serves as the base class for dashboard items.

Namespace: DevExpress.DashboardCommon

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

Declaration

public abstract class DashboardItem :
    IDashboardComponent,
    IComponent,
    IDisposable,
    ISupportInitialize,
    IChangeService,
    ISupportPrefix,
    ICurrencyCultureNameProvider,
    IFiltersProvider

Remarks

Dashboard items are UI elements used to display data within the Dashboard. The DashboardItem class provides basic functionality for all types of dashboard items. All dashboard items can be divided into the following groups.

The Dashboard.Items property provides access to a collection of items within a dashboard, while the DashboardItemGroup.Items allows you to access dashboard items contained within the specified group.

You can identify a specific dashboard item using its component name (the DashboardItem.ComponentName property).

To specify the parent group / tab container for the current dashboard item, use the DashboardItem.ParentContainer property.

See Also