I have simple network generated with graphviz(neato):
digraph G{
edge [len = 1.5, fontcolor=blue];
0 -> 1 [label="0/8"];
0 -> 2 [label="0/7"];
1 -> 3 [label="0/6"];
2 -> 1 [label="0/2"];
2 -> 4 [label="0/7"];
3 -> 2 [label="0/5"];
3 -> 5 [label="0/10"];
4 -> 3 [label="0/4"];
4 -> 5 [label="0/2"];
}
This code generates: network
As you can see, the label for 0 -> 1(3->2 and 4->5 too) edge overlaps the edge. Is there any way to avoid it? I have changed len and fontcolor to make a contrast, but still that is not satisfying.
