I want to provide a WYSIWYG tool, preferably JavaScript based, for workflow diagramming (i.e. directed graphs). I need commercial software friendly licensing, which can include paying a fee to OEM. If there's a necessary server side piece I'd need it in Java or ColdFusion because I'm integrating with an existing product.
My workflow graphs can have more than one start vertex, but only one end vertex, and edges are directed. Beyond WYSIWYG editing, I'm looking for a tool that can assist with the following:
- Ability to export the drawing so it can be:
- persisted
- parsed by a programming language (I'm assuming XML, but other formats are just fine).
- edited again (preserving layout information)
- Associate arbitrary data with edges and vertices including ability to define view/edit panes.
Nice to have:
- Detection if any vertices are unable to reach the end.
- Automatically layout vertices and edges if no plotting information is provided.
I've looked at mxGraph, which seems promising, but am hoping an answerer here can provide some additional direction before I jump down the rabbit hole.