Hi there,
I have a layered diagram which has cyclic links. At the moment it looks like this
As you can see the backflow links makes the diagram has lots of "8"s . The layout is within a group, so I have the group template setup like the following
return GO(
go.Group,
'Vertical',
{
isShadowed: true,
isSubGraphExpanded: false,
layerName: BACKGROUND,
layout: GO(go.LayeredDigraphLayout),
padding: 40,
portSpreading: go.Node.SpreadingEvenly,
selectionObjectName: CONTAINER,
shadowVisible: false,
fromSpot: go.Spot.RightSide,
toSpot: go.Spot.LeftSide,
},
I would like the backflow links they goes to either the top or bottom of the boundary first, then go back to the source node. The path is more like a retangle box, instead of taking a short cut like this.
Cheers,
Kakit