I'm trying to draw a flow chart in html.
The flow must be configured as below.
I've tried it in Mermaid like this
<script src="https://cdnjs.cloudflare.com/ajax/libs/mermaid/9.0.1/mermaid.min.js"></script>
<div class="mermaid">
graph LR
A-->B
B-->C
C-->B
C-->D
D-->C
D-->E
E-->D
E-->F
F-->E
F-->G
G-->E
C-->E
H
A-->H
H-->E;
</div>
Please I want to fix the position from A to G horizontality
I've tried to use CSS position, never worked. Also tried to animate it through jquery, never worked.
Please let me know any way to fix these nodes or else great library for it.
Thanks.