sdrdis / jquery.flowchart

JQuery plugin that allows you to draw a flow chart.
http://sebastien.drouyer.com/jquery.flowchart-demo/
Other
508 stars 149 forks source link

Reverse the input / output side? #133

Open johnwood-wff opened 3 years ago

johnwood-wff commented 3 years ago

At the moment the input shows on the left (or the top, in vertical mode) and output on the right.

Is it possible to allow that to be switched on an individual operator? So that the input would be on the right side, and the output on the left side. For example, if you have an output that actually needs to go backwards to a previous step, then you would benefit from having an intermediate operator that receives the input on the right and then has output to the left that goes back to the previous step. Visually it works better.

By the way - thank you, this is a great little library, superior to many others - was very happy to find it. It is very well designed.

tomislav-agilosit commented 3 years ago

I think no, but you can fake it - just pretend that input is output and output is input, then generate your links that way. So, first parent operator will be on the far right, and children(with parent_id) will be on the left side.