### Flowchart of week49 #### digraph Week49 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step6 [ label = "Other step..", width=0.5, shape=folder, color=red,style=filled, fillcolor=red]; step5 [ label = "Images from\n final volume",shape=folder]; step4 [ label = "Opening 3dS\n with out window",shape=folder]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week48", shape=block]; step2 [ label = "Week49", shape=oval, color=blue]; step3 [ label = "Week50\n (13.12)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4; step2 -> step5; step2 -> step6; }