We are drawing a graph in our application,
The graph can have any number of nodes and cycles, and the links are directed links.
Here self connections are not allowed, and only one connection (incoming or outgoing) is allowed between any two nodes.
While exploring the GoJs, we found ForceDirectedLayout suits our requirement. and our output is similar to
http://gojs.net/latest/samples/conceptMap.html
Its drawing properly with less nodes, and less cycles. But once the diagram contains more nodes and more cycles, its resulting in some line overlappings.
We tried defaultSpringLength, defaultElectricalCharge, defaultSpringLength settings with some values, but no drastic improvement.
can you please tell us, How can we configure the layout so that the look of the graph can be improved.