We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63ea81 commit 1c50743Copy full SHA for 1c50743
Screenshots/graphviz/build.sh
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env bash
2
+
3
+dot -Tpng diagram.dot -Gsize=6,4\! -Gdpi=100 -o ../diagram.png
Screenshots/graphviz/diagram.dot
@@ -0,0 +1,20 @@
+digraph G
+{
+ Init [label = "Initial", shape = none];
4
+ Running [ peripheries = 2 ];
5
6
+ Init -> Running [ style="dashed" ];
7
8
+ subgraph {
9
+ rank = same;
10
+ Paused -> Running [ label = "Resume" ];
11
+ Running -> Paused [ label = "Pause" ];
12
+ }
13
14
+ Running -> Running [ taillabel = "Progress", labeldistance = 2, labelangle = 60 ];
15
16
+ Running -> Fulfilled [ label = "Fulfill" ];
17
18
+ Running -> Rejected [ label = "Reject\n(Cancel)" ];
19
+ Paused -> Rejected [ label = "Reject\n(Cancel)" ];
20
+}
0 commit comments