breadthLimit property

num get breadthLimit

Gets or sets how broad a node and its descendants should be.

By default this is zero. A value of zero imposes no limit; a positive value will specify a limit for the total width of this subtree.

This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.

Implementation

_i2.num get breadthLimit => _i4.getProperty(
      this,
      'breadthLimit',
    );
set breadthLimit (num value)

Implementation

set breadthLimit(_i2.num value) {
  _i4.setProperty(
    this,
    'breadthLimit',
    value,
  );
}