user2537735
user2537735

Reputation: 117

API or code to draw BPMN 2.0 processes programmatically + C#

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

Answers (2)

B--rian
B--rian

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

pautasso
pautasso

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

Related Questions