rowIndent property

num get rowIndent

Gets or sets the distance the first child of each row should be indented.

The default value is 10. The value should be non-negative.

This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass. This property is only used when the #breadthLimit is positive, and some initial space needs to be reserved in each row of nodes for the links that are routed around those rows.

Implementation

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

Implementation

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