tooltip.selectAll('text').each((d, i) => {
console.log(this)
})
tooltip.selectAll('text').each(function(d, i) {
console.log(this)
})
The callback using a vanilla anonymous function works. Arrow functions, why have you shown me my ignorance?
