<graphviz>
digraph G
{
rankdir = LR;
node [shape=record, width=.2, height=.2];
node [width=1];
node1 [color="#929292", label = "Step 01", style="bold", fontname="arial", fontcolor="#929292", URL="Test101"];
node2 [color="orange", label = "Step 02", style="bold", fontname="arial", fontcolor="#458CAF", URL="Test102"];
node3 [color="orange", label = "Step 03", style="bold", fontname="arial", fontcolor="#458CAF", URL="Test101"];
node1 -> node2:w [color="#929292"];
node2:w -> node3:e [color="#515FCA", constraint=false];
}
</graphviz>
|