rowIndent property
num
get
rowIndent
Gets or sets the default indentation of the first child of each row, if the #alignment is not a "Center" alignment.
The default value is 10. The value should be non-negative.
This is used to leave room for the links that connect a parent node with the child nodes that are in additional rows.
This sets the #rootDefaults' property of the same name.
Implementation
_i2.num get rowIndent => _i4.getProperty(
this,
'rowIndent',
);
set
rowIndent
(num value)
Implementation
set rowIndent(_i2.num value) {
_i4.setProperty(
this,
'rowIndent',
value,
);
}