grdcluster.gv 497 B

12345678910111213141516171819202122232425262728293031323334
  1. digraph G {
  2. subgraph cluster0 {
  3. fillcolor="blue:red"
  4. style="filled,rounded"
  5. 0
  6. }
  7. subgraph cluster1 {
  8. peripheries=0
  9. fillcolor="blue:red"
  10. style=filled
  11. 1
  12. }
  13. subgraph cluster2 {
  14. fillcolor="blue"
  15. style=filled
  16. 2
  17. }
  18. subgraph cluster3 {
  19. peripheries=0
  20. fillcolor="red"
  21. style="filled,rounded"
  22. 3
  23. }
  24. subgraph cluster4 {
  25. peripheries=0
  26. bgcolor="red:blue"
  27. 4
  28. }
  29. subgraph cluster5 {
  30. bgcolor="red:blue"
  31. 5
  32. }
  33. 0 -> 1 -> 2 -> 3 -> 4
  34. }