nodeIndentPastParent property
num
get
nodeIndentPastParent
Gets or sets whether the first child should be indented past the parent node's breadth.
The default value is 0.0 -- the only start or end spacing is provided by #nodeIndent. Values must range from 0.0 to 1.0, where 1.0 means the full breadth of this node.
This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass. This property is only sensible when the #alignment is TreeLayout.AlignmentStart or TreeLayout.AlignmentEnd.
Implementation
_i2.num get nodeIndentPastParent => _i4.getProperty(
this,
'nodeIndentPastParent',
);
set
nodeIndentPastParent
(num value)
Implementation
set nodeIndentPastParent(_i2.num value) {
_i4.setProperty(
this,
'nodeIndentPastParent',
value,
);
}