cms/app-client/app/components/discourses-component.js
changeset 266 0e1880fa7bd3
parent 265 5995d360e6ac
child 267 a2872152f568
--- 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
             });
         });