Back to Devexpress

AxisPoint.Value Property

dashboard-devexpress-dot-dashboardcommon-dot-viewerdata-dot-axispoint-70dccfcf.md

latest4.4 KB
Original Source

AxisPoint.Value Property

Gets the 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 Value { get; }
vb
Public ReadOnly Property Value As Object

Property Value

TypeDescription
Object

The value corresponding to the current axis point.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the Value 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.

winforms-dashboard-obtain-dashboard-item-client-data/CS/Dashboard_ClientDataCards_Win/Form1.cs#L40

csharp
deltaValue.TargetValue.Value != null) {
row["Argument"] = point.Value;
row["Actual"] = deltaValue.ActualValue.Value;

wpf-dashboard-how-to-obtain-clicked-item-data/CS/Dashboard_ClientDataCards_Wpf/MainWindow.xaml.cs#L45

csharp
{
    row["Argument"] = point.Value;
    row["Actual"] = deltaValue.ActualValue.Value;

win-designer-pivot-as-master-filter/CS/DesignerSample/Form1.cs#L62

csharp
string parameterName = GetParameterDataMember(axisPoint.Dimension.DataMember);
dashboardDesigner1.Parameters[parameterName].SelectedValue = axisPoint.Value;
axisPoint = axisPoint.Parent;

winforms-dashboard-obtain-dashboard-item-client-data/VB/Dashboard_ClientDataCards_Win/Form1.vb#L39

vb
If deltaValue.ActualValue.Value IsNot Nothing AndAlso deltaValue.TargetValue.Value IsNot Nothing Then
    row("Argument") = point.Value
    row("Actual") = deltaValue.ActualValue.Value

wpf-dashboard-how-to-obtain-clicked-item-data/VB/Dashboard_ClientDataCards_Wpf/MainWindow.xaml.vb#L37

vb
If deltaValue.ActualValue.Value IsNot Nothing AndAlso deltaValue.TargetValue.Value IsNot Nothing Then
    row("Argument") = point.Value
    row("Actual") = deltaValue.ActualValue.Value

win-designer-pivot-as-master-filter/VB/DesignerSample/Form1.vb#L64

vb
Dim parameterName As String = GetParameterDataMember(axisPoint.Dimension.DataMember)
dashboardDesigner1.Parameters(parameterName).SelectedValue = axisPoint.Value
axisPoint = axisPoint.Parent

See Also

UniqueValue

DisplayText

AxisPoint Class

AxisPoint Members

DevExpress.DashboardCommon.ViewerData Namespace