I need to draw a state chart ( or as of figure) in my mvc web app. I am using draculajs (http://www.graphdracula.net/).
I need to put two way arrow as shown in the figure but currently the arrows are overlapping.
My code to draw edge:
g.addEdge('A', 'B', { label: "son", directed: true });
g.addEdge('B', 'A', { label: "father", directed: true });
Can someone help ?