Back to Devexpress

DashboardDataAxisNames.ChartArgumentAxis Field

dashboard-devexpress-dot-dashboardcommon-dot-dashboarddataaxisnames-a5891cab.md

latest3.0 KB
Original Source

DashboardDataAxisNames.ChartArgumentAxis Field

Identifies an argument axis in a chart, scatter chart and pie.

Namespace : DevExpress.DashboardCommon

Assembly : DevExpress.Dashboard.v25.2.Core.dll

NuGet Package : DevExpress.Dashboard.Core

Declaration

csharp
public const string ChartArgumentAxis = "Argument"
vb
Public Const ChartArgumentAxis As String = "Argument"

Field Value

Type
String

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ChartArgumentAxis field.

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-add-custom-interactivity-to-dashboard/CS/Dashboard_CustomVisualInteractivity/Form1.cs#L30

csharp
if (e.DashboardItemName == "chartDashboardItem1") {
    e.TargetAxes.Add(DashboardDataAxisNames.ChartArgumentAxis);
    e.TargetAxes.Add(DashboardDataAxisNames.ChartSeriesAxis);

winforms-dashboard-add-custom-interactivity-to-dashboard/VB/Dashboard_CustomVisualInteractivity/Form1.vb#L30

vb
If e.DashboardItemName = "chartDashboardItem1" Then
    e.TargetAxes.Add(DashboardDataAxisNames.ChartArgumentAxis)
    e.TargetAxes.Add(DashboardDataAxisNames.ChartSeriesAxis)

See Also

DashboardDataAxisNames Class

DashboardDataAxisNames Members

DevExpress.DashboardCommon Namespace