DxChartArgumentAxis Class
Defines a chart’s argument axis.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
public class DxChartArgumentAxis :
DxChartAxis<ChartArgumentAxisModel>
#Remarks
The DxChartArgumentAxis
object implements the Chart’s X-axis. The following image demonstrates visual elements related to the argument axis:
Nested components implement visual elements and allow you to customize axes. Refer to the following topic for more information about axes: Axes in Blazor Charts.
Use the Visible property to toggle axis visibility:
<DxChart Data="forecasts">
<DxChartLineSeries ArgumentField="@((WeatherForecast v) => v.Date)"
ValueField="@((WeatherForecast v) => v.TemperatureC)" />
<DxChartArgumentAxis Visible="false" />
<DxChartValueAxis Visible="false" />
@* ... *@
</DxChart>