I am creating a simple line chart using d3, ... but instead of the standard points along the path, I\'d like to display a fon-awesome icon such as \'fa-arrow-up\'.
I\'ve
var image = ;//image link
Give the link to your image above
point.append("image") .attr("xlink:href", image) .attr("x", -12) .attr("y", -12) .attr("width", 24) .attr("height", 24) ;
Make sure you give it attributes : x/y, width/height