Skip to main content
All docs
V25.1
  • DxPolarChartAxisLabel Class

    Defines settings for axis labels.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public class DxPolarChartAxisLabel :
        DxChartAxisLabelBase<PolarChartAxisLabelModel>

    Remarks

    The DxPolarChartAxisLabel component allows you to configure labels for DxPolarChartArgumentAxis and DxPolarChartValueAxis.

    Use the Format property to change the display format for labels. All predefined formats are available in the ChartElementFormat class. You can also use the DxChartFont object to customize font settings of an axis label.

    <DxPolarChart Data=@DataSource>
        <DxPolarChartValueAxis>
            <DxPolarChartAxisLabel Format="ChartElementFormat.Thousands()" />
        </DxPolarChartValueAxis>
        <DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                                ValueField="@((DiscretePoint i) => i.Day)">
        </DxPolarChartLineSeries>
    </DxPolarChart>
    

    Polar Chart - Axis Labels

    To hide axis labels, set the Visible property to false.

    Inheritance

    Object
    ComponentBase
    DxSettingsComponent<DevExpress.Blazor.Internal.ChartAxisLabelBaseModel>
    DxComplexSettingsComponent<DxChartAxisLabelBase<DevExpress.Blazor.Internal.PolarChartAxisLabelModel>, DevExpress.Blazor.Internal.ChartAxisLabelBaseModel>
    DxChartAxisLabelBase<DevExpress.Blazor.Internal.PolarChartAxisLabelModel>
    DxPolarChartAxisLabel
    See Also