SankeyLinearLayoutAlgorithm.ResolveOverlapping Property
Indicates whether nodes are automatically repositioned to avoid link overlap.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
[XtraSerializableProperty]
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 | 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
ResolveOverlapping = True | ResolveOverlapping = False |
---|---|
The following code disables the Resolve Overlapping algorithm:
SankeyLinearLayoutAlgorithm layoutAlgorithm = (SankeyLinearLayoutAlgorithm)sankeyDiagramControl1.LayoutAlgorithm;
layoutAlgorithm.ResolveOverlapping = DefaultBoolean.False;
See Also