3

我正在尝试手动设置节点的起始位置,但从 JSON 结构中加载它们。如果我将位置放在“节点”结构中它可以工作,但是我正在尝试添加一个名为“位置:”的单独结构,我认为它应该可以工作吗?请参阅下面的结构示例。

var graphdata = { nodes: [ { data: { id: 'j', name: 'Jerry', width: 20, height: 20 ,     shape: 'rectangle' }},
                       { data: { id: 't', name: 'Tom', width: 20 , height: 20, shape: 'circle' } },
                       { data: { id: 'm', name: 'Mary', width: 20 , height: 20, shape: 'circle' } } ,
                       { data: { id: 'b', name: 'Bob', width: 20 , height: 20, shape: 'circle' } } ],

              edges: [
                      { data: { source: 'j', target: 't', faveColor: '#6FB1FC', strength: 90 } },
                      { data: { source: 't', target: 'm', faveColor: '#6FB1FC', strength: 90 } },
                      { data: { source: 'm', target: 'b', faveColor: '#6FB1FC', strength: 90 } } ],

             positions: [ { j: { x:100,y:100 } }, 
                          { t: { x:100,y:200 } } ]

稍后我调用 cy.load(graphdata)。

节点和边缘显示正常,但位置似乎根本没有受到影响。

我还加载了预设布局。

谢谢。

4

2 回答 2

4

这是 Cytoscape Web 还是 Cytoscape.js?

在 Cytoscape.js 中,

于 2013-10-15T18:06:05.013 回答
4

将布局名称更改为“预设”,然后将考虑位置值。参考 - http://js.cytoscape.org/#layouts/preset

于 2016-12-16T09:57:22.193 回答