isTreePathToChildren property

bool get isTreePathToChildren

Gets or sets whether the Diagram tree structure is defined by links going from the parent node to their children, or vice-versa. By default this property is true: links go from the parent node to the child node.

Implementation

_i2.bool get isTreePathToChildren => _i4.getProperty(
      this,
      'isTreePathToChildren',
    );
set isTreePathToChildren (bool value)

Implementation

set isTreePathToChildren(_i2.bool value) {
  _i4.setProperty(
    this,
    'isTreePathToChildren',
    value,
  );
}