Below is the code snippet I am currently executing http://jsfiddle.net/a7as6/14/
I have implemented the following code to convert a node to an image:
node.append("svg:image")
.attr("class", "circle")
.attr("xlink:href", "https://github.com/favicon.ico")
.attr("x", "-8px")
.attr("y", "-8px")
.attr("width", "16px")
.attr("height", "16px");
However, even after implementing this code, my nodes are not converting to images as expected. Any insights on why this might be happening?
Additionally, I am curious about how to assign different images to each individual node. Any suggestions on how to achieve this?
Thank you.