nodeIndent property
num
get
nodeIndent
Gets or sets the distance the first child should be indented.
The default value is zero. The value should be non-negative.
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 nodeIndent => _i4.getProperty(
this,
'nodeIndent',
);
set
nodeIndent
(num value)
Implementation
set nodeIndent(_i2.num value) {
_i4.setProperty(
this,
'nodeIndent',
value,
);
}