selfedge.dot 271 B

12345678910111213
  1. /* edge 2->2 is a self edge which has special drawing routine */
  2. digraph "se"
  3. {
  4. 1->2[color="blue"];
  5. 1->3;
  6. 1->4;
  7. 2->2;
  8. /* edge labels in self edge not supported */
  9. 3->3[label="not-supported" color="#00ff00"];
  10. /* self edges can have a color */
  11. 4->4[color="red"];
  12. }