How does d3.js get the coordinates of the svg element relative to the document

how does d3.js get the coordinates of the svg element relative to the document

D3
Mar.22,2021

The

svg element is a standard html element that can be manipulated using dom api

var dom = document.querySelector('your selector')
console.log(dom.getBoundingClientRect().top)
Menu