Back to Devexpress

AxisPoint.UniqueValue Property

dashboard-devexpress-dot-dashboardcommon-dot-viewerdata-dot-axispoint-85f8f6c3.md

latest2.9 KB
Original Source

AxisPoint.UniqueValue Property

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

Declaration

csharp
public object UniqueValue { get; }
vb
Public ReadOnly Property UniqueValue As Object

Property Value

TypeDescription
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

csharp
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

vb
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

Value

DisplayText

AxisPoint Class

AxisPoint Members

DevExpress.DashboardCommon.ViewerData Namespace