blazor-devexpress-dot-blazor-f139763a.md
Defines a Polar Chart’s argument axis.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxPolarChartArgumentAxis :
DxChartAxisBase<PolarChartArgumentAxisModel>,
IModelProvider<ChartAxisLabelBaseModel>
You can use properties of the DxChartAxisBase<T> and DxPolarChartArgumentAxis objects to configure argument axis settings and appearance.
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
DxPolarChartArgumentAxis / DxPolarChartValueAxis
Use the Visible property to toggle axis visibility:
<DxPolarChart Data="forecasts">
<DxPolarChartLineSeries ArgumentField="@((WeatherForecast v) => v.Date)"
ValueField="@((WeatherForecast v) => v.TemperatureC)" />
<DxPolarChartArgumentAxis Visible="false" />
<DxPolarChartValueAxis Visible="false" />
@* ... *@
</DxPolarChart>
Object ComponentBase DxSettingsComponent<DevExpress.Blazor.Internal.PolarChartArgumentAxisModel> DxComplexSettingsComponent<DxChartAxisBase<DevExpress.Blazor.Internal.PolarChartArgumentAxisModel>, DevExpress.Blazor.Internal.PolarChartArgumentAxisModel> DxChartAxisBase<DevExpress.Blazor.Internal.PolarChartArgumentAxisModel> DxPolarChartArgumentAxis
See Also