Skip to main content
A newer version of this page is available. .
All docs
V21.1

SankeyLinearLayoutAlgorithm.ResolveOverlapping Property

Indicates whether nodes are automatically repositioned to avoid link overlap.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v21.1.dll

NuGet Package: DevExpress.Charts

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public DefaultBoolean ResolveOverlapping { get; set; }

Property Value

Type Description
DefaultBoolean

true if nodes are repositioned to avoid link overlap; otherwise, false. The default value is true.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The default behavior determined by the control’s logic.

Remarks

ResolveOverlapping = True ResolveOverlapping = False
Sankey ResolveOverlapping is true Sankey ResolveOverlapping is false

The following code disables the Resolve Overlapping algorithm:

SankeyLinearLayoutAlgorithm layoutAlgorithm = (SankeyLinearLayoutAlgorithm)sankeyDiagramControl1.LayoutAlgorithm;
layoutAlgorithm.ResolveOverlapping = DefaultBoolean.False;
See Also