Skip to content

Instantly share code, notes, and snippets.

@matematikaadit
Last active October 16, 2018 03:41
Show Gist options
  • Save matematikaadit/59aa0d363ffffd1f301d4c5c07f3d159 to your computer and use it in GitHub Desktop.
Save matematikaadit/59aa0d363ffffd1f301d4c5c07f3d159 to your computer and use it in GitHub Desktop.
1 2 3 4
5 6 7 8
9 10 11 12
digraph test123 {
a -> b -> c;
a -> {x y};
b [shape=box];
c [label="hello\nworld",color=blue,fontsize=24,
fontname="Palatino-Italic",fontcolor=red,style=filled];
a -> z [label="hi", weight=100];
x -> z [label="multi-line\nlabel"];
edge [style=dashed,color=red];
b -> x;
{rank=same; b x}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment