Back to Devexpress

DashboardDataAxisNames.SparklineAxis Field

dashboard-devexpress-dot-dashboardcommon-dot-dashboarddataaxisnames-4426a9b5.md

latest3.7 KB
Original Source

DashboardDataAxisNames.SparklineAxis Field

Identifies a sparkline axis in a grid and cards.

Namespace : DevExpress.DashboardCommon

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

NuGet Package : DevExpress.Dashboard.Core

Declaration

csharp
public const string SparklineAxis = "Sparkline"
vb
Public Const SparklineAxis As String = "Sparkline"

Field Value

Type
String

The following code snippets (auto-collected from DevExpress Examples) contain references to the SparklineAxis 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-obtain-dashboard-item-client-data/CS/Dashboard_ClientDataCards_Win/Form1.cs#L35

csharp
foreach (AxisPoint point in
    clickedItemData.GetAxisPoints(DashboardDataAxisNames.SparklineAxis)) {
        DataRow row = dataSource.NewRow();

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

csharp
foreach (AxisPoint point in
    clickedItemData.GetAxisPoints(DashboardDataAxisNames.SparklineAxis))
{

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

vb
' actual/target values to the data table.
For Each point As AxisPoint In clickedItemData.GetAxisPoints(DashboardDataAxisNames.SparklineAxis)
        Dim row As DataRow = dataSource.NewRow()

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

vb
' actual/target values to the data table.
For Each point As AxisPoint In clickedItemData.GetAxisPoints(DashboardDataAxisNames.SparklineAxis)
    Dim row As DataRow = dataSource.NewRow()

See Also

DashboardDataAxisNames Class

DashboardDataAxisNames Members

DevExpress.DashboardCommon Namespace