Back to Devexpress

DxPolarChartAxisLabel Class

blazor-devexpress-dot-blazor-d095fc93.md

latest2.8 KB
Original Source

DxPolarChartAxisLabel Class

Defines settings for axis labels.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
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.

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

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

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

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

DxPolarChartAxisLabel Members

DevExpress.Blazor Namespace