d3.js用不同的图像改变节点并设置不同距离的链接

时间:2013-11-30 04:20:08

标签: javascript d3.js force-layout

我之前的问题是How to display images based on their distance to the center image??有人建议我使用d3.js.所以这里是我的文档代码。我想知道如何用不同的图像更改这些节点,是否可以使链接具有不同的距离?

<!DOCTYPE html>
    <meta charset="utf-8">
    <style>

    .link {
     stroke: #000;
     stroke-width: 1.5px;
    }

    .node {
     fill: #000;
     stroke: #fff;
     stroke-width: 1.5px;
    }

    .node.a { fill: #ff7f0e; }
    .node.b { fill: #2ca02c; }
    .node.c { fill: #2ca02c; }
    .node.d { fill: #2ca02c; }


    </style>
    <body>
    <script src="http://d3js.org/d3.v3.min.js"></script>
    <script>

    var width = 960,
        height = 500;

    var color = d3.scale.category10();

    var nodes = [],
        links = [];

    var force = d3.layout.force()
    .nodes(nodes)
    .links(links)
    .charge(-400)
    .linkDistance(120)
    .size([width, height])
    .on("tick", tick);

    var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

    var node = svg.selectAll(".node"),
    link = svg.selectAll(".link");


    setTimeout(function() {
     var a = {id: "a"}, b = {id: "b"}, c = {id: "c"},d = {id: "d"};

    nodes.push(a, b, c, d);
    links.push({source: a, target: b}, {source: a, target: c},{source: a, target: d});
    start();
    }, 0);



    function start() {
     link = link.data(force.links(), function(d) { return d.source.id + "-" + d.target.id; });
     link.enter().insert("line", ".node").attr("class", "link");
     link.exit().remove();

     node = node.data(force.nodes(), function(d) { return d.id;});
     node.enter().append("circle").attr("class", function(d) { return "node " + d.id; }).attr("r", 8);
     node.exit().remove();

     force.start();
    }

    function tick() {
      node.attr("cx", function(d) { return d.x; })
          .attr("cy", function(d) { return d.y; })

      link.attr("x1", function(d) { return d.source.x; })
      .attr("y1", function(d) { return d.source.y; })
      .attr("x2", function(d) { return d.target.x; })
      .attr("y2", function(d) { return d.target.y; });
      }

    </script>

我的最终预期输出应如下所示:enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用linkDistance() function调整节点之间的距离。代码看起来像这样。

force.linkDistance(function(d) {
  return d.distance; // each link data element has a member "distance"
});

请注意,这些只是弱几何约束。这意味着如果在两个节点之间指定距离10,则最后的距离可能不是10,而是12.如果需要特定距离,则使用强制布局是错误的。