isRouting property
bool
get
isRouting
Gets or sets whether this layout routes Links. The default value is true. When false, this layout will not explicitly set the Link#points, and the default routing of each individual Link will take place after the Nodes are moved by #commitLayout. Setting this property does not invalidate this layout.
Some layouts ignore links, in which case this property is ignored.
Implementation
_i2.bool get isRouting => _i4.getProperty(
this,
'isRouting',
);
set
isRouting
(bool value)
Implementation
set isRouting(_i2.bool value) {
_i4.setProperty(
this,
'isRouting',
value,
);
}