Skip to main content

DataItem.ID Property

OBSOLETE

The DataItem.ID property is obsolete now. Use the UniqueId property instead.

Gets or sets the data item identifier.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

[Browsable(false)]
[Obsolete("The DataItem.ID property is obsolete now. Use the DataItem.UniqueId property instead.")]
public string ID { get; set; }

Property Value

Type Description
String

A String that specifies the data item identifier.

Remarks

To specify the data item identifier, pass it to the constructor of a DataItem descendant when creating its instance.

You can use the value returned by the ID property to identify the data item in the following cases:

Note

Note that the ID value for the current data item should be unique inside a dashboard item (the DataDashboardItem class).

See Also