fromShortLength property

num get fromShortLength

Gets or sets how far the end segment stops short of the actual port. Positive values are limited by the #fromEndSegmentLength or GraphObject#fromEndSegmentLength. Negative values cause the link to extend into the port. The default value is NaN -- the value actually comes from the GraphObject#fromShortLength property of the #fromPort.

For examples of how to use this property, see Link Connection Points. If you want to move an arrowhead away from the start of the link route, set the arrowhead Shape's GraphObject#segmentOffset.

Implementation

_i2.num get fromShortLength => _i4.getProperty(
      this,
      'fromShortLength',
    );
set fromShortLength (num value)

Implementation

set fromShortLength(_i2.num value) {
  _i4.setProperty(
    this,
    'fromShortLength',
    value,
  );
}