alignAll property

num get alignAll

Enable all options for the LayeredDigraphLayout#alignOption property; See also LayeredDigraphLayout.AlignUpperLeft, LayeredDigraphLayout.AlignUpperRight, LayeredDigraphLayout.AlignLowerLeft, and LayeredDigraphLayout.AlignLowerRight.

This option will tend to balance nodes compared to their neighbors.

Implementation

static _i2.num get alignAll => _i4.getProperty(
      _declaredLayeredDigraphLayout,
      'AlignAll',
    );
set alignAll (num value)

Implementation

static set alignAll(_i2.num value) {
  _i4.setProperty(
    _declaredLayeredDigraphLayout,
    'AlignAll',
    value,
  );
}