layerSpacingParentOverlap property

num get layerSpacingParentOverlap

Gets or sets the fraction of this node's depth that may overlap with the children's layer.

The default value is 0.0 -- there is overlap only if #layerSpacing is negative. Values must range from 0.0 to 1.0, where 1.0 means the full depth of this node.

When this value is greater than 0.0, there might not be overlap if #layerSpacing is larger than the depth of this node times this fraction. Even when this value is 0.0, there may be overlap when #layerSpacing is negative. This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.

Implementation

_i2.num get layerSpacingParentOverlap => _i4.getProperty(
      this,
      'layerSpacingParentOverlap',
    );
set layerSpacingParentOverlap (num value)

Implementation

set layerSpacingParentOverlap(_i2.num value) {
  _i4.setProperty(
    this,
    'layerSpacingParentOverlap',
    value,
  );
}