Cannot select SVG foreignObject element in d3

后端 未结 2 1887
天命终不由人
天命终不由人 2021-02-13 13:00

I\'m working with a d3 force-directed layout with HTML node labels implemented with SVG foreignObject elements. I\'d like to select these elements at various times

2条回答
  •  梦谈多话
    2021-02-13 13:32

    You should be able to d3.selectAll("foreignObject") or svg.selectAll("foreignObject"). It may be that extra comma in your foreignObject attributes (between x and y). I've only inserted foreignObject elements using D3, so perhaps there's something about embedding them like this that's different.

提交回复
热议问题