is it possible to put images as axis ticks using d3.js javascript library?
I am trying to visualize a simple bar graph (done!) but in the x-axis I need to show a different image for each bar.
is it possible to put images as axis ticks using d3.js javascript library? I
Share
It is possible. The way to think about this is using d3 to position images on a page.
If you have each image in a div with it’s own id then you can use d3 to select and position those divs. I found this tutorial very helpful.