Hi, I’m trying to build an workflow diagram with GoJS.
Diagram looks like this;
As you can see link from “Save” to “Expense Form” link overlaps with rectangle. In diagram gray boxes are not visible and they specify a GoJS group object.
If I made change on diagram or call “diagram.layoutDiagram(true)” explictly diagram becomes like this;
As you can see link from “Save” to “Expense Form” shifts and disconnects from related boxes. Also some links chooses unnecessary paths.
Diagram code little bit complicated but object hierarcy looks like this;
- Pool (invisible in diagram and uses digraph layout)
- Task Container ( gray background )
- Task ( colored boxes like “expsense form” )
- ActionContainer (blue boxes container, uses vertical layout)
- Action ( blue box )
- Task Container ( gray background )
My question is how can I solve this layout problem ?
Thank you