Things I have tried
flowchart TB
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
one --> two
three --> two
two --> c2
What I expected:
flowcharts using subgraph and linked with arrows
What I actually got:
No Arrows!!! Even I used -->
What I’m trying to do
So, how to fix it?
Thanks