SankeyLinearLayoutAlgorithm.ResolveOverlapping Property
In This Article
Indicates whether nodes are automatically repositioned to avoid link overlap.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public DefaultBoolean ResolveOverlapping { get; set; }
#Property Value
Type | Description |
---|---|
Default |
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. |
|
False | The value is false. |
|
Default | The value is specified by a global option or a higher-level object. |
|
#Remarks
Resolve |
Resolve |
---|---|
![]() |
![]() |
The following code disables the Resolve Overlapping algorithm:
SankeyLinearLayoutAlgorithm layoutAlgorithm = (SankeyLinearLayoutAlgorithm)sankeyDiagramControl1.LayoutAlgorithm;
layoutAlgorithm.ResolveOverlapping = DefaultBoolean.False;
See Also