Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change. .

DxPieChart<T>.LabelOverlap Property

Specifies how overlapping points are displayed.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

[DefaultValue(PieChartLabelOverlap.ShowAll)]
[Parameter]
public PieChartLabelOverlap LabelOverlap { get; set; }

Property Value

Type Default Description
PieChartLabelOverlap ShowAll

A PieChartLabelOverlap enumeration value.

Available values:

Name Description
ShowAll

Shows all point labels.

Hide

Hides overlapping point labels.

Shift

Shows point labels in a stack formation. Applicable to series points that have the same argument.

Remarks

Use the LabelOverlap property to specify how the chart resolves overlapping labels.

The code below hides point labels that overlap:

<DxPieChart Data="@SalesData" LabelOverlap="PieChartLabelOverlap.Hide">
    @*...*@
</DxPieChart>

Charts - Label overlap

See Also