blazor-devexpress-dot-blazor-07d88d60.md
Contains settings for the value axis.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxChartValueAxis :
DxChartAxis<ChartValueAxisModel>
The DxChartValueAxis object implements the Chart’s Y-axis. The following image demonstrates visual elements related to the value 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
DxChartValueAxis
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>
Object ComponentBase DxSettingsComponent<DevExpress.Blazor.Internal.ChartValueAxisModel> DxComplexSettingsComponent<DxChartAxisBase<DevExpress.Blazor.Internal.ChartValueAxisModel>, DevExpress.Blazor.Internal.ChartValueAxisModel> DxChartAxisBase<DevExpress.Blazor.Internal.ChartValueAxisModel> DxChartAxis<DevExpress.Blazor.Internal.ChartValueAxisModel> DxChartValueAxis
See Also