### Flowchart of week47 #### digraph Week47 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step6 [ label = "Other comments", width=0.5, shape=circle, color=red]; step5 [ label = "Next steps", shape=diamond, color=orange]; step4 [ label = "Devoloping a way\n to save input\n data settings", color=green]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week46", shape=block]; step2 [ label = "Week47", shape=oval, color=blue]; step3 [ label = "Week48\n (29.11)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4; step2 -> step5; step2 -> step6; }