散布図にプロットしている一連のデータがあります。円の1つにマウスを合わせると、データがポップアップ表示されます(x、yの値など)。これは私が使ってみたものです:
vis.selectAll("circle")
.data(datafiltered).enter().append("svg:circle")
.attr("cx", function(d) { return x(d.x);})
.attr("cy", function(d) {return y(d.y)})
.attr("fill", "red").attr("r", 15)
.on("mouseover", function() {
d3.select(this).enter().append("text")
.text(function(d) {return d.x;})
.attr("x", function(d) {return x(d.x);})
.attr("y", function (d) {return y(d.y);}); });
どのようなデータを入力するのかについて、もっと情報が必要です。
私はあなたが欲しいのはツールチップだと思います。これを行う最も簡単な方法は、ブラウザがツールチップを表示するので面倒を見てマウスハンドラを必要としないため、各円にsvg:title
要素を追加することです。コードは次のようになります。
vis.selectAll("circle")
.data(datafiltered).enter().append("svg:circle")
...
.append("svg:title")
.text(function(d) { return d.x; });
あなたがより愛らしいツールチップが欲しいならば、あなたは例えばひどいのを使うことができました。例として ここ を参照してください。
ツールチップを作成するための本当に良い方法は、ここで説明されています。 単純なD3ツールチップの例
あなたはdivを追加する必要があります
var tooltip = d3.select("body")
.append("div")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.text("a simple tooltip");
それからあなたはそれを使ってそれを切り替えることができます
.on("mouseover", function(){return tooltip.style("visibility", "visible");})
.on("mousemove", function(){return tooltip.style("top",
(d3.event.pageY-10)+"px").style("left",(d3.event.pageX+10)+"px");})
.on("mouseout", function(){return tooltip.style("visibility", "hidden");});
d3.event.pageX
/d3.event.pageY
は現在のマウス座標です。
テキストを変更したい場合はtooltip.text("my tooltip text");
を使用できます。
私が最近発見したことを行うための素晴らしいライブラリがあります。使い方は簡単で、結果はかなりきれいです: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);
あなたのオブジェクトに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>
このようにマウスオーバーで使用するデータを渡すことができます。mouseoverイベントでは、以前にenter
edしたデータを引数として(およびインデックスを2番目の引数として)関数を使用するので、enter()
を2回使用する必要はありません。 。
vis.selectAll("circle")
.data(datafiltered).enter().append("svg:circle")
.attr("cx", function(d) { return x(d.x);})
.attr("cy", function(d) {return y(d.y)})
.attr("fill", "red").attr("r", 15)
.on("mouseover", function(d,i) {
d3.select(this).append("text")
.text( d.x)
.attr("x", x(d.x))
.attr("y", y(d.y));
});
この簡潔な例は、d3でカスタムツールチップを作成する一般的な方法を示しています。
var w = 500;
var h = 150;
var dataset = [5, 10, 15, 20, 25];
// firstly we create div element that we can use as
// tooltip container, it have absolute position and
// visibility: hidden by default
var tooltip = d3.select("body")
.append("div")
.attr('class', 'tooltip');
var svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
// here we add some circles on the page
var circles = svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle");
circles.attr("cx", function(d, i) {
return (i * 50) + 25;
})
.attr("cy", h / 2)
.attr("r", function(d) {
return d;
})
// we define "mouseover" handler, here we change tooltip
// visibility to "visible" and add appropriate test
.on("mouseover", function(d) {
return tooltip.style("visibility", "visible").text('radius = ' + d);
})
// we move tooltip during of "mousemove"
.on("mousemove", function() {
return tooltip.style("top", (event.pageY - 30) + "px")
.style("left", event.pageX + "px");
})
// we hide our tooltip on "mouseout"
.on("mouseout", function() {
return tooltip.style("visibility", "hidden");
});
.tooltip {
position: absolute;
z-index: 10;
visibility: hidden;
background-color: lightblue;
text-align: center;
padding: 4px;
border-radius: 4px;
font-weight: bold;
color: orange;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.min.js"></script>