Files
librenms/test/dot.txt
T
laf 35db670c97 Squashed 'lib/vis/' content from commit 1d029ca
git-subtree-dir: lib/vis
git-subtree-split: 1d029cab7b527f3b292e95d550efbf784dac8699
2015-03-28 13:50:19 +00:00

25 lines
587 B
Plaintext

digraph test_graph {
# this test file tries to test everything from the DOT language
rankdir=LR;
size="8,5"
font = "arial"
graph[attr1="another"" attr"]
node [shape = doublecircle]; node1 node2 node3;
node [shape = circle];
edge[length=170 fontSize=12]
node4[color=red shape=diamond]
node5[color="blue", shape=square, width=3]
/*
some block comment
*/
"node1" -> node1 [ label = "a" ];
"node2" -> node3 [label = "b" ];
"node1" -- "node4" [ label = "c" ];
node3-> node4 [ label=d] -> node5 -> 6
A -> {B C}
}