Reputation: 117
Can any one suggest a solution for drawing process flow diagrams in BPMN 2.0 , flow charts, use case diagrams programmatically. We are planning to read the input from an excel file. If getting some ideas we can change the input template as well.
Upvotes: 4
Views: 4507
Reputation: 5880
For simplistic BPMN diagrams, which mainly consist of a large collection of sequential acticities/ tasks, with a few gateways, using Zeebe's YAML workflows might be an alternative to defining a custom Excel format.
Creating a YAML workflow can be done with a regular text editor and does not require a graphical modelling tool. It is inspired by imperative programming concepts and aims to be easily understandable by programmers. Internally, Zeebe transforms a deployed YAML file to BPMN.
Upvotes: 0
Reputation: 133
You could try to use the BPMN Sketch Miner, which can generate BPMN in XML/SVG/PNG formats starting from textual descriptions of the diagram as input.
Upvotes: 2