adrai / flowchart.js

Draws simple SVG flow chart diagrams from textual representation of the diagram
http://flowchart.js.org/
MIT License
8.5k stars 1.21k forks source link

Direction in conditions doesn't seem to work #185

Open lalibi opened 4 years ago

lalibi commented 4 years ago

I am using the following script:

st=>start: Start
e=>end: End
opy=>operation: statements
opn=>operation: statements
cond(align-next=no)=>condition: Condition

st->cond
cond(yes,left)->opy->e
cond(no,right)->opn->e

The yes and no paths are always bottom, right respectively, ignoring the directions I've set.

Is there anything wrong with my script?

adrai commented 4 years ago

left does not work on conditions