I am looking for a way to draw where i can specify angle at which edge is drawn from the node using graphviz tool.
Example is shown in picture below.
Here i have taken the line going to north as 0 Degrees.
So i need something like
1--2 [angle="60"]
1--3 [angle="120"]
1--4 [angle="240"] // also can be angle="-120"
1--5 [angle="300"] // or angle ="-60"
I have already tried the following edge attributes = headport, tailport, dir and graph attribute rankdir but i am unable to get desired result.