Reputation: 19
Edge labels always seem to be horizontal. Is it possible to allign them to the arrow? In other words to use the same angle for the text as what is used for the arrow.
digraph A {
splines=false;
A->B [label="allign me with the angle of the arrow"];
A->C;
}
Upvotes: 0
Views: 151
Reputation: 6801
Unfortunately, no. There is a request on the books (https://gitlab.com/graphviz/graphviz/-/issues/2007), but seemingly no active work on this.
Upvotes: 2