GoJS- 突出显示 GOJS 图链接基于 JSON

GoJS- Highlight GOJS diagram Links based on JSON

如何突出显示 GoJS 图表链接。

见下图我需要显示“货物运输activity”到“检查是否需要额外保险activity”路径Link颜色应该是红色。

扩孔链接颜色应为黑色。

我试图理解下面的例子。 http://gojs.net/latest/extensions/BPMN.html

如何实现这个以及我需要在输入中修改什么 JSON。

您可以使用简单的数据绑定来控制颜色 and/or strokeWidth and/or 任何 Link 或节点的任何其他属性,如 http://gojs.net/latest/intro/dataBinding.html and demonstrated in nearly all of the samples, http://gojs.net/latest/samples 中所述。

或者您可以使用 "highlighting",如 http://gojs.net/latest/intro/highlighting.html and demonstrated in http://gojs.net/latest/samples/distances.html and http://gojs.net/latest/samples/friendWheel.html 中所述。这也使用数据绑定,但状态由 Part.isHighlighted 属性 保存,而不是模型中数据对象上的某些 属性。