flowchart.js
flowchart.js copied to clipboard
Neither operation or parallel can point to condition
Here is my script that the parallel/operation refuses to point to a condition (rule to eval)
rule=>parallel: Write Rules
eval=>condition: Evaluate
baderr=>operation: Analyze Errors
study=>operation: Study the problem
aunch=>operation: Launch
eval(yes, top)->launch
eval(no, bottom)->baderr->study->rule
rule->eval
This works:
st=>start
rule=>parallel: Write Rules
eval=>condition: Evaluate
baderr=>operation: Analyze Errors
study=>operation: Study the problem
launch=>operation: Launch
st->eval(yes)->launch
eval(no, bottom)->baderr->study->rule
rule(path1)->eval
Is it impossible without start? The flowchart isn't supposed to have start block.
never used without a start and an end... feel free to create a PR if you want to adapt it