Skip to content Skip to sidebar Skip to footer

Gojs: Howto Increase Distance Between Links Or Links Labels?

How to increase distance between links (double links)? myDiagram.linkTemplate= $(go.Link, // the whole link panel $(go.Shape, // the link shape { isPanelM

Solution 1:

Toggle the values of link.curviness:

myDiagram.linkTemplate=
    $(go.Link,  // the whole link panel
      { curviness: 20 },
      // ... rest of link template

See Link.curviness in the API

Post a Comment for "Gojs: Howto Increase Distance Between Links Or Links Labels?"