X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Femuvim%2Fdashboard%2Fjs%2Fgraph.js;h=58588334d4de1b73823c6dd22a5cc0af373f506c;hb=17b6e881a3813e6f1f99100ed384f974eaff36a3;hp=9b28e119826111b7df08f5e16573708079f263cd;hpb=f371201f8a205911398ee81359b30afcba526038;p=osm%2Fvim-emu.git diff --git a/src/emuvim/dashboard/js/graph.js b/src/emuvim/dashboard/js/graph.js index 9b28e11..5858833 100755 --- a/src/emuvim/dashboard/js/graph.js +++ b/src/emuvim/dashboard/js/graph.js @@ -12,7 +12,6 @@ var force = d3.layout.force() .charge(-100) .size([width, height]); -//d3.json("js/graph.json", function(error, json) { d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) { if (error) throw error; @@ -28,16 +27,10 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) var node = svg.selectAll(".node") .data(json.nodes) - .enter().append("g") + .enter().append("g") .attr("class", "node") - .call(force.drag); - - //node.append("image") - // .attr("xlink:href", "https://github.com/favicon.ico") - // .attr("x", -8) - // .attr("y", -8) - // .attr("width", 16) - // .attr("height", 16); + .call(force.drag) + node.append("circle") .attr("r", 10) .style("fill", function(d) { return color(d.group); }); @@ -55,4 +48,6 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); }); + + }); \ No newline at end of file