Seeking assistance with implementing mouseover tooltip effects on a d3 graph. The circle appears above the line, but the issue arises when the mouse hovers directly over the line causing the tooltip to disappear. Is there a way to prioritize the circle over the background line?
Mouseover not functioning due to cursor being on the background line:
https://i.sstatic.net/LEuZn.jpg
Successful mouseover trigger: https://i.sstatic.net/Nxb0e.jpg The current mouseover function looks like this:
.on("mouseover", function(thisElement, index){
//perform actions upon selection
})