curve property

EnumValue get curve

Gets or sets the way the path is generated from the route's points. The value must be one of Link.None|None, Link.Bezier|Bezier, Link.JumpGap|JumpGap, or Link.JumpOver|JumpOver.

Setting this property to Link.JumpOver|JumpOver or Link.JumpGap|JumpGap requires the Diagram to do considerable computation when calculating Link routes. Consider not using a Jump... value with Diagrams that contain large numbers of Links if you are targeting slow devices.

The default value is Link.None|None -- each link segment is a straight line.

Implementation

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

Implementation

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