alignmentBusBranching property

EnumValue get alignmentBusBranching

Like TreeLayout.AlignmentBus with the children arranged on both sides of an "aisle" with any last odd child placed at the end of the aisle, but the children get an TreeVertex#angle that depends on which side of the aisle they were placed; this value is used for TreeLayout#alignment or TreeLayout#alternateAlignment.

This only works well when the TreeLayout#treeStyle is TreeLayout.StyleLayered.

A bus does not take TreeVertex#breadthLimit into account.

Implementation

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

Implementation

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