dashboard-devexpress-dot-dashboardcommon-dot-viewerdata-dot-axispoint-85f8f6c3.md
Gets the unique value corresponding to the current axis point.
Namespace : DevExpress.DashboardCommon.ViewerData
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public object UniqueValue { get; }
Public ReadOnly Property UniqueValue As Object
| Type | Description |
|---|---|
| Object |
The unique value corresponding to the current axis point
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UniqueValue 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.
wpf-dashboard-linked-interactivity/CS/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.cs#L67
IList<AxisPointTuple> tuple = childDashboardControl.GetAvailableDrillDownValues(itemName);
IEnumerable<object> availableValues = tuple.Select(t => t.GetAxisPoint().UniqueValue);
if (availableValues.Contains(value))
wpf-dashboard-linked-interactivity/VB/WpfDashboard_LinkedInteractivity/ChildWindow.xaml.vb#L60
Dim tuple As IList(Of AxisPointTuple) = childDashboardControl.GetAvailableDrillDownValues(itemName)
Dim availableValues As IEnumerable(Of Object) = tuple.Select(Function(t) t.GetAxisPoint().UniqueValue)
If availableValues.Contains(value) Then
See Also