corelibraries-devexpress-dot-xtracharts-dot-sankey-dot-sankeylinearlayoutalgorithm-578ab85f.md
Indicates whether nodes are automatically repositioned to avoid link overlap.
Namespace : DevExpress.XtraCharts.Sankey
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public DefaultBoolean ResolveOverlapping { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Layout)>
Public Property ResolveOverlapping As DefaultBoolean
| Type | Description |
|---|---|
| DefaultBoolean |
true if nodes are repositioned to avoid link overlap; otherwise, false. The default value is true.
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
| ResolveOverlapping = True | ResolveOverlapping = False |
|---|---|
The following code disables the Resolve Overlapping algorithm:
SankeyLinearLayoutAlgorithm layoutAlgorithm = (SankeyLinearLayoutAlgorithm)sankeyDiagramControl1.LayoutAlgorithm;
layoutAlgorithm.ResolveOverlapping = DefaultBoolean.False;
Dim layoutAlgorithm As SankeyLinearLayoutAlgorithm = CType(sankeyDiagramControl1.LayoutAlgorithm, SankeyLinearLayoutAlgorithm)
layoutAlgorithm.ResolveOverlapping = DefaultBoolean.[False]
See Also
SankeyLinearLayoutAlgorithm Class