Back to Devexpress

DxChartArgumentAxis Class

blazor-devexpress-dot-blazor-b76ee5c5.md

latest3.8 KB
Original Source

DxChartArgumentAxis Class

Defines a chart’s argument axis.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
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 additional information about axes: Axes in Blazor Charts.

Show the Axis Structure

Use the Visible property to toggle axis visibility:

razor
<DxChart Data="forecasts">
    <DxChartLineSeries ArgumentField="@((WeatherForecast v) => v.Date)"
                       ValueField="@((WeatherForecast v) => v.TemperatureC)" />
    <DxChartArgumentAxis Visible="false" />
    <DxChartValueAxis Visible="false" />
    @* ... *@
</DxChart>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

Inheritance

Object ComponentBase DxSettingsComponent<DevExpress.Blazor.Internal.ChartArgumentAxisModel> DxComplexSettingsComponent<DxChartAxisBase<DevExpress.Blazor.Internal.ChartArgumentAxisModel>, DevExpress.Blazor.Internal.ChartArgumentAxisModel> DxChartAxisBase<DevExpress.Blazor.Internal.ChartArgumentAxisModel> DxChartAxis<DevExpress.Blazor.Internal.ChartArgumentAxisModel> DxChartArgumentAxis

See Also

DxChartArgumentAxis Members

DevExpress.Blazor Namespace