Skip to main content

StackedBarTotalLabel.ResolveOverlappingMode Property

Gets or sets a value specifying the total labels’ overlap resolving algorithm.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public ResolveOverlappingMode ResolveOverlappingMode { get; set; }

Property Value

Type Description
ResolveOverlappingMode

The value specifying the overlap resolving algorithm.

Available values:

Name Description
None

The overlapping resolving algorithm is disabled.

WPF_ResolveOverlappingNone

Default

The default algorithm to re-position labels in a random way, to avoid overlapping labels.

WPF_ResolveOverlappingDefault

HideOverlapped

If two or more labels overlap, some of them are automatically hidden, to avoid overlapping.

WPF_ResolveOverlappingHideOverlapped

JustifyAroundPoint

Only labels that are overlapping change their position. They are re-positioned in such a way, so that they are moved around the corresponding point’s center, but their indent from the point center is preserved.

WPF_ResolveOverlappingJustifyAroundPoint

JustifyAllAroundPoint

All labels (both overlapping and non-overlapping) change their position. They are re-positioned in such a way, so that they are moved around the corresponding point’s center, but their indent from the point center is preserved.

WPF_ResolveOverlappingJustifyAllAroundPoint

Remarks

To specify the minimum distance between total labels, use the XYDiagram2D.LabelsResolveOverlappingMinIndent (PieSeries.LabelsResolveOverlappingMinIndent, CircularDiagram2D.LabelsResolveOverlappingMinIndent) proeprty.

See Also