私が最近発見した、それを行うための素晴らしいライブラリがあります。使い方は簡単で、結果は非常にきれいです:d3-tip。
あなたはここに例を見ることができます:
基本的には、ダウンロード(index.js)を実行し、スクリプトを含めるだけです。
<script src="index.js"></script>
そして、ここからの指示に従ってください (例と同じリンク)
しかし、あなたのコードでは、それは次のようになります:
メソッドを定義します。
var tip = d3.tip()
.attr('class', 'd3-tip')
.offset([-10, 0])
.html(function(d) {
return "<strong>Frequency:</strong> <span style='color:red'>" + d.frequency + "</span>";
})
svgを作成する(既に行っているように)
var svg = ...
メソッドを呼び出します。
svg.call(tip);
オブジェクトにヒントを追加します。
vis.selectAll("circle")
.data(datafiltered).enter().append("svg:circle")
...
.on('mouseover', tip.show)
.on('mouseout', tip.hide)
CSSを追加することを忘れないでください:
<style>
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>