如何用Angular/Javascript创建工作流图



我需要用给定的json对象构建一个工作流图

每个节点有:label, from, to, nodeType
{
"name": "S1",
"id": 492,
"type": "start",
"label": "Start",
"level": "0",
"isActive": true,
"target": [
{
"id": 2
}
]
}

下面是应该完成的图表:工作流程图示例

试图找到任何库做这个,但我失败了

你可以试试PrimeNG的组织结构图,你可能会得到一些接近你需要的东西。

' NG

最新更新