Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

D3.js: Pie graph, adding a border only to the outter region

I got a pie graph in D3 with a stroke to separete every slice. However, I'd like to add a border only to the outter region of the slices, not in a continuos line but rather respecting the gaps created by the strokes in the original slices. See my image for clarifiation. Any thoughts on how to do that?

See http://jsfiddle.net/4xk58/

arcs.append("path")
.attr("fill", function (d, i) {
return color(i);
})
.attr("d", arc).style('stroke', 'white')
.style('stroke-width', 5);

I want an outter border like this

like image 480
odiseo Avatar asked Nov 27 '13 21:11

odiseo


2 Answers

I solved this by adding two extra arch sets, making up to three. The first one is the normal pie, WITHOUT strokes

arcs.append("path")
.attr("fill", function (d, i) {
   return color(i);
}).attr("d", arc);

The second one will be the border I wanted to add in first place. It's just a set of arches surrounding our original one but in a different color. Not strokes yet.

And finally, the third archset will be the one that actually draws the strokes I wanted

//Draw phantom arc paths
phantomArcs.append("path")
  .attr("fill", 'white')
  .attr("fill-opacity", 0.1)
  .attr("d", arcPhantom).style('stroke', 'white')
  .style('stroke-width', 5);

This makes up for the effect, see http://jsfiddle.net/odiseo/4xk58/4/

Desired visual effect

like image 172
odiseo Avatar answered Oct 30 '22 02:10

odiseo


You can simulate this by adding another set of arcs that acts as the border.

var arcBorder = d3.svg.arc()
  .innerRadius(outerRadius)
  .outerRadius(outerRadius + border);

// etc

arcs.append("path")
  .attr("fill", "black")
  .attr("d", arcBorder);

Complete jsfiddle here.

like image 24
Lars Kotthoff Avatar answered Oct 30 '22 03:10

Lars Kotthoff