vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
587 B

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