compactionNone property

EnumValue compactionNone

Only simple placement of children next to each other, as determined by their subtree breadth; this value is used for TreeLayout#compaction or TreeLayout#alternateCompaction.

For any node, there will not be another node at any depth occupying the same breadth position, unless there are multiple rows; In other words, if there is no breadth limit resulting in multiple rows, with this compaction mode it is as if every node were infinitely deep.

Implementation

static _i3.EnumValue get compactionNone => _i4.getProperty(
      _declaredTreeLayout,
      'CompactionNone',
    );
void compactionNone=(EnumValue value)

Implementation

static set compactionNone(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredTreeLayout,
    'CompactionNone',
    value,
  );
}