inline_dotgraph_4.dot 308 B

12345678910111213141516171819
  1. digraph datalink {
  2. node [shape=record];
  3. subgraph cluster0 {
  4. label = "Up";
  5. up [label="<1>|<2>|<3>|<4>|<5>"];
  6. color = "white"
  7. }
  8. subgraph cluster1{
  9. label = "Down";
  10. labelloc = b;
  11. down [label="<1>|<2>|<3>"];
  12. color = "white"
  13. }
  14. up:1 -> down:1;
  15. up:3 -> down:2;
  16. up:5 -> down:3;
  17. }