X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=src%2Femuvim%2Fdashboard%2Fjs%2Fgraph.js;fp=src%2Femuvim%2Fdashboard%2Fjs%2Fgraph.js;h=9b28e119826111b7df08f5e16573708079f263cd;hp=bc10d39016474cf33f13d77ec0cc86358a87b978;hb=f371201f8a205911398ee81359b30afcba526038;hpb=68a0ba9dc7fe9ca4f0caf512cf0d4ecdb7a179d5 diff --git a/src/emuvim/dashboard/js/graph.js b/src/emuvim/dashboard/js/graph.js old mode 100644 new mode 100755 index bc10d39..9b28e11 --- a/src/emuvim/dashboard/js/graph.js +++ b/src/emuvim/dashboard/js/graph.js @@ -1,6 +1,6 @@ var width = 960, height = 500, - color = d3.scale.category20c(); + color = d3.scale.category10(); var svg = d3.select("#table_graph").append("svg") .attr("width", width) @@ -40,7 +40,7 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) // .attr("height", 16); node.append("circle") .attr("r", 10) - .style("fill", function(d) { return color(d.name); }); + .style("fill", function(d) { return color(d.group); }); node.append("text") .attr("dx", 12)