如何影响3d力图中的链接距离?

时间:2018-05-16 00:20:07

标签: javascript d3.js three.js d3-force-directed

我在this package中尝试3D力图,我正在寻找影响节点之间粘合强度的方法。链接宽度或长度都不错,但我在API中看不到任何允许我控制或影响的内容。传递链接强度Graph的正确字段是什么,每个链接一个?

1 个答案:

答案 0 :(得分:2)

以下是此example的修改版本,其中每个链接应用自定义距离:

const N = 300;
const gData = {
  nodes: [...Array(N).keys()].map(i => ({ id: i })),
  links: [...Array(N).keys()]
    .filter(id => id)
    .map(id => {

      var distance = (Math.random() < 0.2) ? 75 : 250;
      var width = (distance == 75) ? 4 : 0.2;

      return ({
        source: id,
        target: Math.round(Math.random() * (id-1)),
        width: width,
        distance: distance
      })
    })
};

const Graph = ForceGraph3D()
  (document.getElementById('3d-graph'))
    .graphData(gData)
    .linkWidth('width')
    .cameraPosition({ z: 600 })
    .d3Force("link", d3.forceLink().distance(d => d.distance))
    .d3Force("charge", d3.forceManyBody().theta(0.5).strength(-1));
<head>
  <style> body { margin: 0; } </style>

  <script src="//unpkg.com/3d-force-graph"></script>
  <script src="https://d3js.org/d3.v4.min.js"></script>
</head>

<body>
  <div id="3d-graph"></div>
</body>

事实上,为了允许用户修改链接参数,该库只使用d3 force API。唯一的区别是3d-force-graph库中访问者的名称.d3Force()(而不是d3中的.force())。

例如,要修改每个链接的距离,我们可以为每个链接数据点添加distance属性(除sourcetarget之外),然后将此距离修改为按照力布局(使用d3Force访问器):

.d3Force("link", d3.forceLink().distance(d => d.distance))

而在d3力布局中我们会使用:

.force("link", d3.forceLink().distance(d => d.distance))

给了我们:

const Graph = ForceGraph3D()
  (document.getElementById('3d-graph'))
    .graphData(gData)
    .linkWidth('width')
    // The link distance modification:
    .d3Force("link", d3.forceLink().distance(d => d.distance))
    // To make it prettier:
    .d3Force("charge", d3.forceManyBody().theta(0.5).strength(-1));

可以使用相同的方式调整强度:

.d3Force("link", d3.forceLink().strength(d => d.strength))

在这个例子中,我给每个链接一个75或250随机的距离。为了清楚起见,我给了一个更小的距离的链接更大的宽度。我的演示中的节点分布并不完美,可能需要额外的调整。