(darkness)
| 204 | } |
| 205 | |
| 206 | function getColorScale(darkness) { |
| 207 | return d3.scaleOrdinal() |
| 208 | .domain(graph.categoryKeys) |
| 209 | .range(graph.colors.map(function (c) { |
| 210 | return d3.hsl(c).darker(darkness).toString(); |
| 211 | })); |
| 212 | } |
| 213 | |
| 214 | graph.strokeColor = getColorScale(0.7); |
| 215 | graph.fillColor = getColorScale(-0.1); |