forked from git-ashish's block: Dynamic Force Layout
Created
March 8, 2017 14:14
-
-
Save karthiir/3a6d23bc4d843d8e7c961acff2b559fd to your computer and use it in GitHub Desktop.
Dynamic Force Layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var w = 960, | |
h = 500, | |
nodes = [], | |
node; | |
var vis = d3.select("body").append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
var force = d3.layout.force() | |
.nodes(nodes) | |
.links([]) | |
.size([w, h]); | |
force.on("tick", function(e) { | |
vis.selectAll("path") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); | |
}); | |
setInterval(function(){ | |
// Add a new random shape. | |
nodes.push({ | |
type: "circle",//d3.svg.symbolTypes[~~(Math.random() * d3.svg.symbolTypes.length)], | |
size: Math.random() * 300 + 100 | |
}); | |
// Restart the layout. | |
force.start(); | |
vis.selectAll("path") | |
.data(nodes) | |
.enter().append("path") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }) | |
.attr("d", d3.svg.symbol() | |
.size(function(d) { return d.size; }) | |
.type(function(d) { return d.type; })) | |
.style("fill", "steelblue") | |
.style("stroke", "transparent") | |
.style("stroke-width", "15") | |
.call(force.drag); | |
}, 1000); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment