compactionBlock property

EnumValue get compactionBlock

A simple fitting of subtrees; this value is used for TreeLayout#compaction or TreeLayout#alternateCompaction.

This mode produces more compact trees -- often nicer looking too; Nodes will not overlap each other, unless you have negative values for some of the spacing properties; However it is possible when the links are orthogonally styled that occasionally the subtrees will be placed so close together that some links may overlap the links or even the nodes of other subtrees.

Implementation

static _i3.EnumValue get compactionBlock => _i4.getProperty(
      _declaredTreeLayout,
      'CompactionBlock',
    );
set compactionBlock (EnumValue value)

Implementation

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