flowchart.js icon indicating copy to clipboard operation
flowchart.js copied to clipboard

Direction doesn't always work

Open DeanWard opened this issue 6 years ago • 2 comments

Thanks for making this, it's awesome. I'm having an issue where I can't control the direction for a condition outcome.

st=>start: Autobuy Triggered
e=>end: Sold

match=>operation: Match Partners
sell=>operation: Attempt Sale
portal=>end: Portal
fail=>end: Fail

matches=>condition: Have Matches?
sold=>condition: Sold?
more=>condition: More Matches?
cascade=>condition: Cascade?


st->match->matches
matches(yes,left)->sell->sold
matches(no)->portal

sold(yes)->e
sold(no)->cascade

cascade(yes)->more
cascade(no,bottom)->fail

more(yes,top)->sell
more(no)->portal

more(yes,top)->sell is coming out of the bottom and needlessly crossing another line

Is it something I'm doing wrong?

Thanks

DeanWard avatar Mar 19 '18 12:03 DeanWard

try v1.10.0 ;-)

adrai avatar Mar 19 '18 14:03 adrai

Thanks I'm using quiver so I guess I'll have to wait for them to update their versions :)

DeanWard avatar Mar 19 '18 14:03 DeanWard