I am using the playground at
https://visjs.github.io/vis-network/examples/network/data/dotLanguage/dotPlayground.html
and I am trying to create a simple graph
digraph SimpleGraph {
3->6;
6->1;
1->5;
1->7;
7->2;
5->4;
6->3;
1->3;
5->1;
7->6;
2->5;
4->5;
3->7;
5->3;
4->1;
6->7;
7->5;
3->4;
overlap=false
fontsize=12;
}
The graph I get has lot of nodes very close to each other and it is becoming difficult to see the arcs properly
I want the arcs to be straight and clearly visible without any significant overlap