layerSpacingParentOverlap property

num get layerSpacingParentOverlap

Gets or sets the fraction of the node's depth for which the children's layer starts overlapped with the parent's layer.

The default value is 0.0 -- there is overlap between layers only if #layerSpacing is negative. A value of 1.0 and a zero #layerSpacing will cause child nodes to completely overlap the parent.

A value greater than zero may still cause overlap between layers, unless the value of #layerSpacing is large enough. A value of zero might still allow overlap between layers, if #layerSpacing is negative.

This sets the #rootDefaults' property of the same name.

Implementation

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

Implementation

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