avoidableMargin property

Object get avoidableMargin

Gets or sets the margin around this Node in which avoidable links will not be routed.

You may need to increase the #fromEndSegmentLength and #toEndSegmentLength in order to prevent link routes from turning within the avoidable area around the Node.

Value must be of type Margin. The default margin is Margin(2,2,2,2)

Implementation

_i2.Object get avoidableMargin => _i4.getProperty(
      this,
      'avoidableMargin',
    );
set avoidableMargin (Object value)

Implementation

set avoidableMargin(_i2.Object value) {
  _i4.setProperty(
    this,
    'avoidableMargin',
    value,
  );
}