Layout engine is neato. I would like to have some more space between the arrow from a to c and the node b. margin
and pad
don't help with neato. This is my graph:
digraph G {
splines=true
a [pos="0.0,0.0!"];
b [pos="0.0,1.0!"];
c [pos="0.0,2.0!"];
a -> b;
a -> c;
b -> c;
}
Is that possible?
esep
enlarges this distance, so that routing won't work in my cases. Any idea, if one can get around this problem? But it feels like this is intrinsic to Graphviz. – Joktan