How to create workflow diagram with Angular/Javascript

670 Views Asked by At

i need to build a workflow diagram with the given json object json object has : label, from, to , nodeType for each node

{
    "name": "S1",
    "id": 492,
    "type": "start",
    "label": "Start",
    "level": "0",
    "isActive": true,
    "target": [
       {
        "id": 2
       }
     ]
   }

here is the diagram that should be done : workflow diagram sample

tried to find any library doing this but i failed

1

There are 1 best solutions below

1
On

You can try PrimeNG's Org Chart, you can possibly get something close to what you required.

Prime NG