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

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.v19.1.Core.dll

Declaration

[Obsolete("The DataItem.ID property is obsolete now. Use the DataItem.UniqueId property instead.")]
[Browsable(false)]
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