alternateLayerSpacing property
num
get
alternateLayerSpacing
Gets or sets the alternate distance between a parent node and its children.
The default value is 50.
This is the distance between a parent node and its first row of children, in case there are multiple rows of its children. The #alternateNodeSpacing property determines the distance between siblings. The #alternateRowSpacing property determines the distance between rows of children. Negative values may cause children to overlap with the parent. This sets the #alternateDefaults' property of the same name.
Implementation
_i2.num get alternateLayerSpacing => _i4.getProperty(
this,
'alternateLayerSpacing',
);
set
alternateLayerSpacing
(num value)
Implementation
set alternateLayerSpacing(_i2.num value) {
_i4.setProperty(
this,
'alternateLayerSpacing',
value,
);
}