在 JointJS DirectedGraph 中添加单独的元素

Add separate element in JointJS DirectedGraph

是否可以在 DirectedGraph 的函数之外添加元素?我已尝试在文档中使用 graph.addCell(),但图表仅显示来自 DirectedGraph 插件的元素。

我正在尝试完成一个有向图,其中可能有一个或两个元素 'extra parents' 链接到正常层次结构之外。

我正在使用如图所示的源代码here

任何 advice/guidance 都很好。谢谢!

只需包含外围元素即可完成。要实现发布图像中的布局,请使用:

<div id="adjacency-list">{
    "A":["B"],
    "B":["C","D"],
    "C":[],
    "D":[],
    "EXTRA":["D"]
}</div>

这不包含在文档中。据我所知,对于任意数量的 parent/children 组合都非常有效。