Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ResolveOverlappingMode Enum

Lists the values that specify the overlapping resolving algorithm to be applied to series point labels.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public enum ResolveOverlappingMode

#Members

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

#Related API Members

The following properties accept/return ResolveOverlappingMode values:

#Remarks

The values listed by this enumeration are used to set the SeriesLabel.ResolveOverlappingMode property.

See Also