我正在 Cytoscape 中创建具有广度优先布局的树。
在布局选项中,我将一个节点设置为根。但是有没有办法让我有 2 个节点作为根节点?我在 cytoscape 参考中看到有以下方式的布局选项:
var options = {
name: 'breadthfirst',
roots: undefined, // the roots of the trees
};
现在,可以使用其 ID 将单个节点设置为根节点。例如:
roots: "#a"
我该怎么做所以我有多个根为一棵树,如图所示?