alternateLayerSpacingParentOverlap property
num
get
alternateLayerSpacingParentOverlap
Gets or sets the alternate 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 #alternateLayerSpacing is negative. A value of 1.0 and a zero #alternateLayerSpacing will cause child nodes to completely overlap the parent.
A value greater than zero may still cause overlap between layers, unless the value of #alternateLayerSpacing is large enough. A value of zero might still allow overlap between layers, if #alternateLayerSpacing is negative. This sets the #alternateDefaults' property of the same name.
Implementation
_i2.num get alternateLayerSpacingParentOverlap => _i4.getProperty(
this,
'alternateLayerSpacingParentOverlap',
);
set
alternateLayerSpacingParentOverlap
(num value)
Implementation
set alternateLayerSpacingParentOverlap(_i2.num value) {
_i4.setProperty(
this,
'alternateLayerSpacingParentOverlap',
value,
);
}