alternateNodeSpacing property

num alternateNodeSpacing

Gets or sets the alternate distance between child nodes.

The default value is 20.

A negative value causes sibling nodes to overlap. This sets the #alternateDefaults' property of the same name.

Implementation

_i2.num get alternateNodeSpacing => _i4.getProperty(
      this,
      'alternateNodeSpacing',
    );
void alternateNodeSpacing=(num value)

Implementation

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