I have a graph looking like:
digraph R {
rankdir=LR
"foo" -> "bar";
}
Now I want that the node style of foo is a square and bar is a circle. Also, in subsequent uses, this should be the case, e.g.:
digraph R {
rankdir=LR
"foo" -> "bar" [label="qux1"];
"baz" -> "foo" [label="qux2"];
}
Then foo should be a square. Is there a way to specify this using this inline documentation?
Note! I know that I can write:
digraph G {
{
node1 [shape=box, label="foo"]
node2 [shape=circle, label="bar"]
node1 -> node2 [label="qux"]
}
}
but this is not what I want. I want to use this specific inline notation.
As stated above, the dot language grammar does not support this. A workaround can be done by using subgraphs: