layerSpacing property
num
get
layerSpacing
Gets or sets the distance between this node and its children.
The default value is 50.
Negative values may cause children to overlap with the parent. This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.
Implementation
_i2.num get layerSpacing => _i4.getProperty(
this,
'layerSpacing',
);
set
layerSpacing
(num value)
Implementation
set layerSpacing(_i2.num value) {
_i4.setProperty(
this,
'layerSpacing',
value,
);
}