# versa case flow ```graphviz digraph hierarchy { nodesep=1.0 // increases the separation between nodes subgraph cluster_9 { label=CaseFlow; node [color=Red,fontname=Courier,shape=box] edge [color=Blue, style=dashed] //All the lines look like this PreCase->{timeout, progress} {rank=same;timeout, progress} progress -> {dropped, completed, inCourt} inCourt -> {win, lose} {rank=same;win, lose} // Put them on the same level } } ```