Skip to main content
A newer version of this page is available. .

DxChartArgumentAxis Class

Defines a chart’s argument axis.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxChartArgumentAxis :
    DxComplexSettingsComponent<DxChartArgumentAxis, ChartArgumentAxisModel>,
    IModelProvider<ChartAxisTitleModel>,
    IModelProvider<ChartAxisLabelModel>,
    IModelProvider<ChartConstantLineModel>,
    IModelContainer<ChartConstantLineModel>,
    IModelProvider<ChartValueBreaksModel>,
    IModelProvider<ChartAxisGridLinesModel>,
    IModelContainer<ChartValueBreaksModel>

Remarks

You can add the following child components to an argument axis:

The image below shows axis elements:

<DxChart>
  ...
  <DxChartArgumentAxis>
      <DxChartAxisLabel Format="ChartAxisLabelFormat.MonthAndDay" Visible="true"/>
      <DxChartConstantLine Value="@("2019-Dec-31")">
          <DxChartConstantLineLabel VerticalAlignment="VerticalAlignment.Top" 
                                    Position="RelativePosition.Inside"/>
      </DxChartConstantLine>
      <DxChartAxisTitle Text="Date" HorizontalAlignment="HorizontalAlignment.Left"/>
  </DxChartArgumentAxis>
  ... 
</DxChart>        

Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.Internal.ChartArgumentAxisModel>
DxComplexSettingsComponent<DxChartArgumentAxis, DevExpress.Blazor.Internal.ChartArgumentAxisModel>
DxChartArgumentAxis
See Also