Append
to node in SVG with D3

前端 未结 2 1624
一整个雨季
一整个雨季 2020-12-18 05:46

I have tried to add some popup messages next to nodes but it looks like anything other than SVG elements won\'t display with append.

This works:

2条回答
  •  遥遥无期
    2020-12-18 06:27

    Alternatively, you can define your html code outside of svg in its' own div. Then append the contents by class using:

    d3.select("#nytg-tooltip").style('top',ypos+"px").style('left',xpos+"px").style('display','block');
    

    As seen in this example:

    http://www.nytimes.com/interactive/2012/10/15/us/politics/swing-history.html?_r=0

    enter image description here

提交回复
热议问题