blazor-devexpress-dot-blazor-d095fc93.md
Defines settings for axis labels.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxPolarChartAxisLabel :
DxChartAxisLabelBase<PolarChartAxisLabelModel>
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>
To hide axis labels, set the Visible property to false.
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