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

DataItem.UniqueId Property

Gets or sets the unique data item identifier.

Namespace: DevExpress.DashboardCommon

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

Declaration

public string UniqueId { get; set; }

Property Value

Type Description
String

A String that specifies the data item identifier.

Remarks

The UniqueId property returns null for the newly created data item. If you add the created DataItem to a data-bound dashboard item (DataDashboardItem), the UniqueId will return an auto-generated identifier (DataIem0, DataItem1, etc.), which is unique inside a dashboard item.

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

Important

If you specified a custom data item identifier, make sure that its value is unique inside a dashboard item. Otherwise, DuplicateDataItemIdException will be thrown.

The following code snippets (auto-collected from DevExpress Examples) contain references to the UniqueId property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also