簡體   English   中英

d3.js中使用閾值滑塊的強制布局中的鏈接斷開

[英]Broken links in Force Layout with Threshold Slider in d3.js

我試圖重現本教程中 B is for breaking links的示例B is for breaking links

這是我到目前為止的代碼:

output.json

文件output.json在此鏈接中

index.html

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

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

.link {
  stroke: #999;
  stroke-opacity: .6;
}

h3 {
    color: #1ABC9C;
    text-align:center;  
    font-style: italic;
    font-size: 14px;
    font-family: "Helvetica";
}

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

var width = 960,
    height = 500;

var color = d3.scale.category20();

var force = d3.layout.force()
    .charge(-120)
    .linkDistance(30)
    .size([width, height]);

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

var graphRec, node, link;

d3.json("output.json", function(error, graph) {
   if (error) throw error;
   graph = JSON.parse(JSON.stringify(graph));

   force
      .nodes(graph.nodes)
      .links(graph.links)
      .start();

   graphRec = graph;

   link = svg.selectAll(".link")
      .data(graph.links)
      .enter().append("line")
      .attr("class", "link")
      .style("stroke-width", function(d) { return Math.sqrt(d.value); });

   node = svg.selectAll(".node")
      .data(graph.nodes)
      .enter().append("circle")
      .attr("class", "node")
      .attr("r", 5)
      .style("fill", function(d) { return color(d.group); })
      .call(force.drag);

  node.append("title")
      .text(function(d) { return d.name; });

  force.on("tick", function() {
    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; });

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

//adjust threshold
function threshold(thresh) {
    graphRec.links.splice(0, graphRec.links.length);
        for (var i = 0; i < graphRec.links.length; i++) {
            if (graphRec.links[i].value > thresh) {graphRec.links.push(graphRec.links[i]);}
        }
    restart();
}
//Restart the visualisation after any node and link changes
function restart() {
    link = link.data(graphRec.links);
    link.exit().remove();
    link.enter().insert("line", ".node").attr("class", "link");
    node = node.data(graphRec.nodes);
    node.enter().insert("circle", ".cursor").attr("class", "node").attr("r", 5).call(force.drag);
    force.start();
}

</script>

<form>
    <h3> Link threshold 0 <input type="range" id="thersholdSlider" name="points" value = 0 min="0" max="10" onchange="threshold(this.value)"> 10 </h3>
</form>

現在,該圖看起來像開始時一樣,但是當我嘗試移動滑塊時,所有鏈接都斷開了,所有節點都分離了。

即使當我將滑塊恢復為0 ,鏈接仍然斷開。

問題是什么 ? 我該如何解決?

謝謝!

看起來您已經在restartthreshold功能中用“ graphRec”(用於還原鏈接的未過濾版本)覆蓋了對“ graph”(當前圖形)的引用

以上版本:

function threshold(thresh) {
    graphRec.links.splice(0, graphRec.links.length);
        for (var i = 0; i < graphRec.links.length; i++) {
            if (graphRec.links[i].value > thresh) {graphRec.links.push(graphRec.links[i]);}
        }
    restart();
}
//Restart the visualisation after any node and link changes
function restart() {
    link = link.data(graphRec.links);
    link.exit().remove();
    link.enter().insert("line", ".node").attr("class", "link");
    node = node.data(graphRec.nodes);
    node.enter().insert("circle", ".cursor").attr("class", "node").attr("r", 5).call(force.drag);
    force.start();
}

看原始示例,它應該是:

function threshold(thresh) {
    graph.links.splice(0, graph.links.length);
        for (var i = 0; i < graphRec.links.length; i++) {
            if (graphRec.links[i].value > thresh) {graph.links.push(graphRec.links[i]);}
        }
    restart();
}
//Restart the visualisation after any node and link changes
function restart() {
    link = link.data(graph.links);
    link.exit().remove();
    link.enter().insert("line", ".node").attr("class", "link");
    node = node.data(graph.nodes);
    node.enter().insert("circle", ".cursor").attr("class", "node").attr("r", 5).call(force.drag);
    force.start();
}

因此,在代碼中發生的事情是,通過將它們全部拼接起來,從graphRec.links中刪除了所有鏈接。 然后它嘗試遍歷現在為空的數組,但是當然什么也沒有發生。 (這也是一樣,因為代碼會將它們添加到同一數組的末尾,因此它將不斷增加大小,並且循環將永遠不會結束。)然后在restart它將空數組連接到圖形中,因此您所有鏈接消失,並且永遠不會返回,因為從基礎數據中刪除了鏈接。

因此,恢復這兩個功能的原始代碼是我的答案。

PS分配graphRec = graph來保留原始圖的副本將不起作用,因為它只能進行淺表復制,它們將指向並編輯相同的數組。 您需要做graphRec = {links: graph.links.slice(), nodes: graph.nodes.slice()}或在原始代碼中使用jsonifying方法

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM