I have this little example code:
digraph Test {
Beginning -> Ending [label="What", labeldistance=2.0];
}
This gives me this structure:
If I remove the labeldistance=2.0
, than I'm getting the same graph. How can increase the distance of the label What
to the arrow so it's a little bit moved to the right?