notify.cdb.dot 294 B

123456789101112131415
  1. digraph {
  2. label = "Seppo.app: Whom will I notify / Whom am I blocking";
  3. labelloc = t;
  4. //rankdir = LR;
  5. start [shape=point];
  6. node [shape=doublecircle]; accepted blocked;
  7. node [shape=circle];
  8. start -> pending -> accepted -> blocked -> pending -> blocked;
  9. start -> blocked;
  10. }