I have problems showing the correct path of a link from or to a group. “Node to node” it works perfectly fine, i can store and restore the points and make changes to the link - everything works as expected. But when there is a group on either side of the link the path of the link seems to be a “default” path. My link-template looks like this
$go(go.Link, {
<span =“Apple-tab-span” style=“white-space:pre”> routing: go.Link.Orthogonal,
<span =“Apple-tab-span” style=“white-space:pre”> corner: 10,
<span =“Apple-tab-span” style=“white-space:pre”> reshapable: true,
<span =“Apple-tab-span” style=“white-space:pre”> resegmentable: true,
<span =“Apple-tab-span” style=“white-space:pre”> curve: go.Link.JumpGap
<span =“Apple-tab-span” style=“white-space:pre”> }, new go.Binding(“points”, “”, function (v) {
var stringArr = v.points.split(",");
var intArr = $.map(stringArr, function (v) {
return parseInt(v);
});
return intArr;
}),
$go(go.Shape, { name: “SHAPE”, strokeWidth: 3, stroke: “#DEDE16” }),
$go(go.Shape,
{ toArrow: “Standard”, stroke: “#DEDE16”, fill: “#DEDE16”, scale: 2 }))