rowSpacing property

num get rowSpacing

Gets or sets the distance between rows within one layer, all sharing the same parent.

The default value is 25.

Negative values may cause nodes to overlap. This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.

Implementation

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

Implementation

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