Back to Devexpress

DxPolarChartValueAxis Class

blazor-devexpress-dot-blazor-6f38dbea.md

latest3.5 KB
Original Source

DxPolarChartValueAxis Class

Defines a Polar Chart’s value axis.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public class DxPolarChartValueAxis :
    DxChartAxisBase<PolarChartValueAxisModel>,
    IModelProvider<ChartAxisLabelBaseModel>

Remarks

You can use properties of the DxChartAxisBase<T> and DxPolarChartValueAxis objects to configure value axis settings and appearance.

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

Use the Visible property to toggle axis visibility:

razor
<DxPolarChart Data="forecasts">
    <DxPolarChartLineSeries ArgumentField="@((WeatherForecast v) => v.Date)"
                            ValueField="@((WeatherForecast v) => v.TemperatureC)" />
    <DxPolarChartArgumentAxis Visible="false" />
    <DxPolarChartValueAxis Visible="false" />
    @* ... *@
</DxPolarChart>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

Inheritance

Object ComponentBase DxSettingsComponent<DevExpress.Blazor.Internal.PolarChartValueAxisModel> DxComplexSettingsComponent<DxChartAxisBase<DevExpress.Blazor.Internal.PolarChartValueAxisModel>, DevExpress.Blazor.Internal.PolarChartValueAxisModel> DxChartAxisBase<DevExpress.Blazor.Internal.PolarChartValueAxisModel> DxPolarChartValueAxis

See Also

DxPolarChartValueAxis Members

DevExpress.Blazor Namespace