dashboard-devexpress-dot-dashboardcommon-dot-viewerdata-dot-axispoint-70dccfcf.md
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
public object Value { get; }
Public ReadOnly Property Value As Object
| Type | Description |
|---|---|
| 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
deltaValue.TargetValue.Value != null) {
row["Argument"] = point.Value;
row["Actual"] = deltaValue.ActualValue.Value;
{
row["Argument"] = point.Value;
row["Actual"] = deltaValue.ActualValue.Value;
win-designer-pivot-as-master-filter/CS/DesignerSample/Form1.cs#L62
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
If deltaValue.ActualValue.Value IsNot Nothing AndAlso deltaValue.TargetValue.Value IsNot Nothing Then
row("Argument") = point.Value
row("Actual") = deltaValue.ActualValue.Value
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
Dim parameterName As String = GetParameterDataMember(axisPoint.Dimension.DataMember)
dashboardDesigner1.Parameters(parameterName).SelectedValue = axisPoint.Value
axisPoint = axisPoint.Parent
See Also