Created
June 3, 2013 20:57
-
-
Save fredhsu/5701360 to your computer and use it in GitHub Desktop.
Graphing a simple topology from OpenDaylight with D3.js
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
var w = 400, | |
h = 400, | |
fill = d3.scale.category20(); | |
var svg = d3.select("#chart") | |
.append("svg:svg") | |
.attr("width", w) | |
.attr("height", h); | |
d3.json("topo.json", function(json) { | |
var topo = d3.layout.force() | |
.charge(-300) | |
.linkDistance(100) | |
.nodes(json.nodes) | |
.links(json.links) | |
.size([w, h]) | |
.start(); | |
var link = svg.append("svg:g").selectAll("line.link") | |
.data(json.links) | |
.enter().append("svg:line") | |
.attr("class", "link") | |
.style("stroke-width", function(d) { return Math.sqrt(d.value); }) | |
.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; }); | |
var node = svg.append("svg:g").selectAll("circle.node") | |
.data(json.nodes) | |
.enter().append("svg:circle") | |
.attr("class", "node") | |
.attr("r", 15) | |
.style("fill", function(d) { return fill(d.group); }) | |
.attr("cx", function(d) { return d.x; }) | |
.attr("cy", function(d) { return d.y; }) | |
.call(topo.drag); | |
var text = svg.append("svg:g").selectAll("g") | |
.data(topo.nodes()) | |
.enter().append("svg:g"); | |
text.append("svg:text") | |
.text(function(d) { return d.id; }); | |
//.attr("x", function(d) { return d.x; }) | |
//.attr("y", function(d) { return d.y; }) | |
svg.style("opacity", 1e-6) | |
.transition() | |
.duration(1000) | |
.style("opacity", 1); | |
topo.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; }); | |
//text.attr("x", function(d) { return d.x; }) | |
//.attr("y", function(d) { return d.y; }); | |
text.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); | |
node.attr("cx", function(d) { return d.x; }) | |
.attr("cy", function(d) { return d.y; }); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment