blazor-devexpress-dot-blazor-a42f313b.md
Lists values that specify how a chart displays point labels if they overlap.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum ChartLabelOverlap
| Name | Description |
|---|---|
ShowAll |
Shows all point labels.
|
| Hide |
Hides overlapping point labels.
|
| Stack |
Shows point labels in a stack formation. Applicable to series points that have the same argument.
|
The following properties accept/return ChartLabelOverlap values:
Use the LabelOverlap property to specify how the chart resolves overlapping labels.
The following code snippet hides overlapping point labels:
<DxChart Data="@SalesData" LabelOverlap="ChartLabelOverlap.Hide">
@*...*@
<DxChartBarSeries Settings="@settings">
<DxChartSeriesLabel Visible="true" />
</DxChartBarSeries>
</DxChart>
Run Demo: Charts - Dynamic Series
See Also