path property

EnumValue get path

Gets or sets how the tree should be constructed from the TreeEdges connecting TreeVertexes. Must be TreeLayout.PathDestination or TreeLayout.PathSource or TreeLayout.PathDefault.

The default value is TreeLayout.PathDefault, where the value of Diagram#isTreePathToChildren determines the effective value of this property.

Implementation

_i3.EnumValue get path => _i4.getProperty(
      this,
      'path',
    );
set path (EnumValue value)

Implementation

set path(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'path',
    value,
  );
}