Skip to main content
A newer version of this page is available. .

PieChartLabelOverlap Enum

Lists values that specify how a Pie Chart displays labels if they overlap.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum PieChartLabelOverlap

Members

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.

Related API Members

The following properties accept/return PieChartLabelOverlap values:

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