Skip to main content
All docs
V25.1
  • SankeyLinearLayoutAlgorithm.ResolveOverlapping Property

    Indicates whether nodes are automatically repositioned to avoid link overlap.

    Namespace: DevExpress.XtraCharts.Sankey

    Assembly: DevExpress.XtraCharts.v25.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 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

    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