isOrthogonal property
bool
get
isOrthogonal
This read-only property is true if #routing is a value that implies that the points of the route should be orthogonal, such that each point shares a common X or a common Y value with the immediately previous and next points. This property is completely dependent on the #routing property. Values of Link.Orthogonal and Link.AvoidsNodes causes this property to be true.
The points in the route might not actually form an orthogonal route, but when the route is computed the intent is to maintain orthogonality.
Implementation
_i2.bool get isOrthogonal => _i4.getProperty(
this,
'isOrthogonal',
);
set
isOrthogonal
(bool value)
Implementation
set isOrthogonal(_i2.bool value) {
_i4.setProperty(
this,
'isOrthogonal',
value,
);
}