score:0

you can analyze the javascript code of your exemple. i think that the function that doing this, is this one:

paths.enter()
    .append('svg:path')
        .attr('d', arc)
        .style('fill', function(d, i) {
            return color(i);
        })
        .style('stroke', '#ffffff')
        .on(eventobj)

Related Query

More Query from same tag