cola.js 和 Cytoscape 的 Y 轴力

Y-axis force with cola.js and Cytoscape

我注意到使用 Cola.js(使用 Cytoscape.js)我的大部分布局倾向于形成正方形布局并且没有用完我的边界框,它比高更宽。

我环顾四周,发现 d3-force 具有 forceY 选项,可以转换方形布局 (https://bl.ocks.org/steveharoz/8c3e2524079a8c440df60c1ab72b5d03):

到这个更宽的布局:

我真的很想为 Cola.js 做同样的事情,但我一直在努力做到这一点,并尝试了所有可能的选项,如设置边界框、禁用缩放等。这可能吗?

我找到了 Cola.js 的演示,它提供了我需要的东西,但无法在 Cytoscape.js 中运行:https://ialab.it.monash.edu/webcola/examples/pageBoundsConstraints.html

根据您提供的 link,您可以应用与 cola.js 类似的功能。您需要锁定两个虚拟节点(一个用于 top-left,一个用于 bottom-right),然后适当地为所有其他节点添加约束。您可以禁用虚拟节点的可见性(我将它们保留为可见,以便我们可以看到边界框的 top-left 和 bottom-right。)。您可以使用虚拟节点的位置来调整边界框。

var cy = window.cy = cytoscape({
  container: document.getElementById('cy'),

  style: [{
      selector: 'node',
      css: {
        'content': 'data(id)',
        'text-valign': 'center',
        'text-halign': 'center'
      }
    },
    {
      selector: 'edge',
      css: {
        'curve-style': 'straight',
      }
    }
  ],
  layout: {
        name: 'preset'
  },
  elements: {
    nodes: [{
        data: {
          id: 'n0'
        }
      },
      {
        data: {
          id: 'n1'
        }
      },
      {
        data: {
          id: 'n2'
        }
      },
      {
        data: {
          id: 'n3'
        }
      },
      {
        data: {
          id: 'n4'
        }
      },      
      {
        data: {
          id: 'd0'
        },
        position: {x: 0, y:0}
      },
      {
        data: {
          id: 'd1'
        },
        position: {x: 400, y:150}
      }    
    ],
    edges: [{
        data: {
          id: 'n0n1',
          source: 'n0',
          target: 'n1'
        }
      },
      {
        data: {
          id: 'n1n2',        
          source: 'n1',
          target: 'n2'
        }
      },
      {
        data: {
          id: 'n2n3',        
          source: 'n2',
          target: 'n3'
        }
      },
      {
        data: {
          id: 'n4n1',        
          source: 'n4',
          target: 'n1'
        }
      }
    ]
  }
});

var tl = cy.getElementById('d0');
var br = cy.getElementById('d1');

tl.lock();
br.lock();

var realGraphNodes = cy.nodes().difference(tl.union(br));
var constraints = [];
    for (var i = 0; i < realGraphNodes.length; i++) {
        constraints.push({ axis: 'x', left: tl, right: realGraphNodes[i], gap: 100 });
        constraints.push({ axis: 'y', left: tl, right: realGraphNodes[i], gap: 100 });
        constraints.push({ axis: 'x', left: realGraphNodes[i], right: br, gap: 100 });
        constraints.push({ axis: 'y', left: realGraphNodes[i], right: br, gap: 100 });
    }

cy.layout({name: 'cola', randomize: true, animate: false, gapInequalities: constraints}).run();
body {
  font: 14px helvetica neue, helvetica, arial, sans-serif;
}

#cy {
  height: 95%;
  width: 95%;
  left: 0;
  top: 0;
  position: absolute;
}
<html>

<head>
  <meta charset=utf-8 />
  <meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
  <script src="https://unpkg.com/cytoscape@3.10.0/dist/cytoscape.min.js"></script>
  <script src="https://unpkg.com/webcola/WebCola/cola.min.js"></script>
  <script src="https://unpkg.com/cytoscape-cola/cytoscape-cola.js"></script>
</head>

<body>
  <div id="cy"></div>
</body>

</html>