alternateNodeIndentPastParent property

num get alternateNodeIndentPastParent

Gets or sets the fraction of this node's breadth is added to #alternateNodeIndent to determine any spacing at the start of the children.

The default value is 0.0 -- the only indentation is specified by #alternateNodeIndent. When the value is 1.0, the children will be indented past the breadth of the parent node.

This property is only sensible when the #alignment is TreeLayout.AlignmentStart|AlignmentStart or TreeLayout.AlignmentEnd|AlignmentEnd.

Implementation

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

Implementation

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