Back to Devexpress

DashboardDataAxisNames.ChartSeriesAxis Field

dashboard-devexpress-dot-dashboardcommon-dot-dashboarddataaxisnames-4d14eb95.md

latest2.8 KB
Original Source

DashboardDataAxisNames.ChartSeriesAxis Field

Identifies a series axis in a chart and pie.

Namespace : DevExpress.DashboardCommon

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

NuGet Package : DevExpress.Dashboard.Core

Declaration

csharp
public const string ChartSeriesAxis = "Series"
vb
Public Const ChartSeriesAxis As String = "Series"

Field Value

Type
String

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ChartSeriesAxis 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#L31

csharp
e.TargetAxes.Add(DashboardDataAxisNames.ChartArgumentAxis);
e.TargetAxes.Add(DashboardDataAxisNames.ChartSeriesAxis);
e.EnableHighlighting = true;

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

vb
e.TargetAxes.Add(DashboardDataAxisNames.ChartArgumentAxis)
e.TargetAxes.Add(DashboardDataAxisNames.ChartSeriesAxis)
e.EnableHighlighting = True

See Also

DashboardDataAxisNames Class

DashboardDataAxisNames Members

DevExpress.DashboardCommon Namespace