我正在尝试将工具提示添加到我的 D3 图表中:http: //jsfiddle.net/ericps/b5v4R/1/
但是添加这些鼠标事件会破坏所有内容的呈现方式,我不知道为什么。这是一个带轴的折线图
dots.enter()
.append("circle")
.attr("class", "dot")
.attr("cx", open_line.x())
.attr("cy", open_line.y())
.attr("r",3.5)
.on("mouseover", myMouseOverFunction)
.on("mouseout", myMouseOutFunction);
在第 144 行注释掉这两种.on
方法会使一切都呈现出我期望的样子
对此有任何见解吗?
工具提示基于这个小提琴