I would like to place an icon (for example from font awesome, or an image) into the middle of the inner circle of DONUT graph - used is NVD3.
Example :
The black points on the picture are placeholders for where the icons yould appear.
So far I was able to add text with the following code:
d3.select("#pie-svg svg").selectAll(".nv-slice").each(function (d, i) {
    var el;
    el = d3.select(this);
    if (el.select("text").empty()) {
        return el.append('text')
                 .attr('class', "monthText")
                 .attr("x", 5)
                 .attr("dy", 130)
                 .append("textPath")
                 .attr("text-anchor", "end")
                 .attr("startOffset", "25%")
                 .attr("xlink:href", function () { return "#monthArc_" + i; })
                 .text(function (d) { return "lorem ipsulum"; });
    }
});
Thank you very much for your help !