我想爲我的樹形圖中包含的所有節點添加工具提示。D3圖表:如何添加工具提示?
var tooltip = d3.select("body")
.append("div")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.text("a simple tooltip");
並嘗試顯示一個工具提示框,當用戶mouseover()它,但不起作用,並沒有例外。
我創建了一個示範基地對我的當前階段:http://jsfiddle.net/qvco2Ljy/119/
檢查[這篇文章](http://www.w3schools.com/css/css_tooltip.asp)。 –
我想我應該更好地使用d3 API的東西,而不是CSS? – anson920520