diff -r 5995d360e6ac -r 0e1880fa7bd3 cms/app-client/app/components/discourses-component.js --- a/cms/app-client/app/components/discourses-component.js Wed Aug 24 17:22:02 2016 +0200 +++ b/cms/app-client/app/components/discourses-component.js Wed Aug 24 17:48:50 2016 +0200 @@ -82,7 +82,7 @@ leaf.append("circle") .attr("r", function(d) { return d.r; }) .attr("fill", function(d) { return d.fill; }) - .attr("stroke", function() { return "#859097"; }); + .attr("stroke", function(d) { return d.stroke; }); element.style("height", height + "px"); }); @@ -106,7 +106,8 @@ 'id': key, 'name': discourse.label, 'value': discourse.count, - 'fill': category_value.fill + 'fill': category_value.fill, + 'stroke': category_value.stroke }); });