Tooltip Issue
Need to make tooltip.
Have this structure in my html:
<div id="tooltip">
Place: <span id="place"
class="info"></span><br>
</div>
Try this snippet in my .js
.on("mouseover", function (d) {
d3.select(this).sty...
dataviz.hashnode.dev1 min read
Dmitry
Data Visualisation
I just changed
.text(d.place)to.text(i.place)and everything is working now 😃