D3 v4 - 强制有向图,阈值滑块不起作用

时间:2017-07-29 09:36:47

标签: d3.js

我正在尝试将此示例http://jsfiddle.net/simonraper/TdHgx/?utm_source=website&utm_medium=embed&utm_campaign=TdHgx更新为d3 v4。

//Constants for the SVG
var width = 500,
    height = 500;

//Set up the colour scale
var color = d3.scale.category20();

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

//Append a SVG to the body of the html page. Assign this SVG as an object to svg
var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height)
.on("dblclick", threshold);

//Read the data from the mis element 
var mis = document.getElementById('mis').innerHTML;
graph = JSON.parse(mis);
graphRec=JSON.parse(JSON.stringify(graph)); //Add this line

//Creates the graph data structure out of the json data
force.nodes(graph.nodes)
    .links(graph.links)
    .start();

//Create all the line svgs but without locations yet
var link = svg.selectAll(".link")
    .data(graph.links)
    .enter().append("line")
    .attr("class", "link")
    .style("stroke-width", function (d) {
    return Math.sqrt(d.value);
});

//Do the same with the circles for the nodes - no 
var node = svg.selectAll(".node")
    .data(graph.nodes)
    .enter().append("circle")
    .attr("class", "node")
    .attr("r", 8)
    .style("fill", function (d) {
    return color(d.group);
})
    .call(force.drag);


//Now we are giving the SVGs co-ordinates - the force layout is generating the co-ordinates which this code is using to update the attributes of the SVG elements
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;
    });
});


//---Insert-------

//adjust threshold

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();
}
//---End Insert---

当我增加阈值时,该示例工作正常,但在减少阈值时不会按预期重绘行。要查看我的意思,请查看下面的代码 - 尝试将阈值增加到max然后再返回min。线条看起来不同/更稀疏。

https://codepen.io/mtsvelik/pen/rzxVrE

我该如何解决这个问题?

我的Codepen示例:

    //Read the data from the mis element 
    var graph = document.getElementById('json').innerHTML;
    graph = JSON.parse(graph);
    render(graph);  



    function render(graph){

    // Dimensions of sunburst.
    var radius = 6;

    var maxValue = d3.max(graph.links, function(d, i, data) {
        return d.value;
    });

    //sub-in max-value from
    d3.select("div").html('<form class="force-control" ng-if="formControl">Link threshold 0 <input type="range" id="thersholdSlider" name="points" value="0" min="0" max="'+ maxValue +'">'+ maxValue +'</form>');

    document.getElementById("thersholdSlider").onchange = function() {threshold(this.value);};

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


    console.log(graph);
    var graphRec = JSON.parse(JSON.stringify(graph)); //Add this line       
    //graphRec = graph; //Add this line         
    console.log(graphRec);

    var simulation = d3.forceSimulation()
            .force("link", d3.forceLink().id(function(d) { return d.id; }))
            .force("charge", d3.forceManyBody().strength(Number(-1000 + (1.25*graph.links.length))))  //default force is -30, making weaker to increase size of chart
            .force("center", d3.forceCenter(width / 2, height / 2));

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

    var node = svg.append("g")
              .attr("class", "nodes")
            .selectAll("circle")
            .data(graph.nodes)
            .enter().append("circle")
              .attr("class", "node")
              .attr("r", radius)
              .attr("fill", function(d) { return d.color; })
              .call(d3.drag()
                  .on("start", dragstarted)
                  .on("drag", dragged)
                  .on("end", dragended));

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

          simulation
              .nodes(graph.nodes)
              .on("tick", ticked);

          simulation.force("link")
              .links(graph.links);

    console.log(link.data(graph.links));

    //drawLegend(labelCounts, allLabels, totalJourneys);  //need a copy of the buildHeirarchy function from sunburst-draw.js to extract these vars

    function ticked() {
            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; });
          }

    function dragstarted(d) {
          if (!d3.event.active) simulation.alphaTarget(0.3).restart();
          d.fx = d.x;
          d.fy = d.y;
        }

    function dragged(d) {
          d.fx = d3.event.x;
          d.fy = d3.event.y;
        }

    function dragended(d) {
          if (!d3.event.active) simulation.alphaTarget(0);
          d.fx = null;
          d.fy = null;
        }



    function threshold(thresh) {
            thresh = Number(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]);}
                }

            console.log(graph.links);
            /*var threshold_links = graph.links.filter(function(d){ return (d.value > thresh);});
            console.log(graph.links);

            restart(threshold_links);*/
            restart();


        }


    //Restart the visualisation after any node and link changes
//  function restart(threshold_links) {
    function restart() {    

            //DATA JOIN 
            //link = link.data(threshold_links);
            link = link.data(graph.links);    
            console.log(link); 

            //EXIT
            link.exit().remove();
            console.log(link);

            // ENTER - https://bl.ocks.org/colbenkharrl/21b3808492b93a21de841bc5ceac4e47
            // Create new links as needed.  
            link = link.enter().append("line")
            .attr("class", "link")
            //.attr("stroke-width", function(d){ return d.})
            .merge(link);           
            console.log(link);


            // DATA JOIN
            node = node.data(graph.nodes);

            /*
            // EXIT
            node.exit().remove();

            // ENTER
            node = node.enter().append("circle")
                .attr("class", "node")
                .attr("r", radius)
                .attr("fill", function(d) {return d.color;})
                .call(d3.drag()
                  .on("start", dragstarted)
                  .on("drag", dragged)
                  .on("end", dragended)
                )
                .merge(node);

            node.append("title")
            .text(function(d) { return d.id; });
            */          

          simulation
              .nodes(graph.nodes)
              .on("tick", ticked);

          simulation.force("link")
              .links(graph.links);

            simulation.alphaTarget(0.3).restart();
        }

    }

1 个答案:

答案 0 :(得分:1)

无论出于何种原因,您注释掉了定义输入选择的stroke-width的行:

.attr("stroke-width", function(d){
    return Math.sqrt(d.value);
})

以下是更新的CodePen:https://codepen.io/anon/pen/yoeYNd?editors=0010