rowSpacing property

num rowSpacing

Gets or sets the distance between rows or columns of a parent node's immediate children.

The default value is 25.

This property is only used when there is more than one row of children for a given parent node. The #nodeSpacing property determines the distance between siblings. The #layerSpacing property determines the distance between the parent node and its first row or column of child nodes.

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

Implementation

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

Implementation

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