Skip to main content

ResolveOverlappingMode Enum

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

Namespace: DevExpress.Xpf.Charts

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

#Declaration

public enum ResolveOverlappingMode

#Members

Name Description
None

The overlapping resolving algorithm for series labels is disabled.

Default

The default algorithm re-positions labels randomly, to avoid overlapping labels.

HideOverlapped

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

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 it is preserved.

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 it is preserved.

#Passed To

You can pass ResolveOverlappingMode values to the SeriesLabel.ResolveOverlappingMode property.

#Remarks

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

See Also