我正在d3中构建散点图可视化,但是在显示点工具提示时遇到了一个小问题。数据作为数组对象存在,位置0的元素是x
坐标,位置1是y
坐标,位置2是点cluster
,位置3是{{1 }}。
cluster description
这是我的JS:
[
{
"points": [
[
-12.32,
15.74,
1,
"Cluster 5"
], ... ,
[
-15.38,
-3.97,
0,
"Cluster 2"
]
}
]
最后是html:
d3.json("data.json", function(data) {
var points = data[0].points;
var svg = d3.select("#cluster"),
width = +svg.attr("width"),
height = +svg.attr("height");
var k = height / width,
x0 = [-15, 15],
y0 = [-15 * k, 15 * k],
x = d3.scaleLinear().domain(x0).range([0, width]),
y = d3.scaleLinear().domain(y0).range([height, 0]),
z = d3.scaleOrdinal(d3.schemeCategory10);
var xAxis = d3.axisTop(x).ticks(12),
yAxis = d3.axisRight(y).ticks(12 * height / width);
var brush = d3.brush().on("end", brushended),
idleTimeout,
idleDelay = 350;
var tooltip = d3.select("#cluster")
.append("div")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.style("background", "#ffffff")
.text("a simple tooltip");
svg.selectAll("circle")
.data(points)
.enter()
.append("circle")
.attr("cx", function(d) { return x(d[0]); })
.attr("cy", function(d) { return y(d[1]); })
.attr("r", 2.5)
.attr("fill", function(d) { return z(d[2]); })
.on("mouseover", function(d){tooltip.text(function(d) { return d[3]; }); 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");});
svg.selectAll(".domain")
.style("display", "none");
svg.append("g")
.attr("class", "brush")
.call(brush);
function brushended() {
var s = d3.event.selection;
if (!s) {
if (!idleTimeout) return idleTimeout = setTimeout(idled, idleDelay);
x.domain(x0);
y.domain(y0);
} else {
x.domain([s[0][0], s[1][0]].map(x.invert, x));
y.domain([s[1][1], s[0][1]].map(y.invert, y));
svg.select(".brush").call(brush.move, null);
}
zoom();
}
function idled() {
idleTimeout = null;
}
function zoom() {
var t = svg.transition().duration(750);
svg.select(".axis--x").transition(t).call(xAxis);
svg.select(".axis--y").transition(t).call(yAxis);
svg.selectAll("circle").transition(t)
.attr("cx", function(d) { return x(d[0]); })
.attr("cy", function(d) { return y(d[1]); });
}
});
除工具提示外,缩放略有偏离中心,一切似乎均正常运行。我感谢任何指导。
答案 0 :(得分:1)
这是一个有效的JS小提琴:ScatterPlot with zoom and tooltips
主要更改:
当您将brush
rect
附加到圆圈上方时,圆圈上的mouse
事件将永远无法正常工作。您会发现,元素的顺序在这里很重要。所以,这就是我所做的事情(移动了笔刷,将代码 Above 附加到了圆圈上>
svg.append("g")
.attr("class", "brush")
.call(brush);
svg.selectAll("circle")
...
我不确定只有在鼠标在上时才需要工具提示时为什么使用mousemove
。我将鼠标事件更改为:
.on("mouseover", function(d){
tooltip.html(d[3]).style("top", (d3.event.pageY-10)+"px").style("left",(d3.event.pageX+10)+"px").style("visibility", "visible");
}).on("mouseout", function(){return tooltip.style("visibility", "hidden");});
您在SVG中拥有div
元素(用作工具提示)。我敢肯定这可能是匆忙完成的。此处:我将其移至SVG之外:
var tooltip = d3.select(".two")
.append("div")
在设置轴域时,不建议使用静态数字。您拥有数据,并且知道要从中获取x
和y
点,因此只需使用d3.extent
x0 = d3.extent(points, function (d) { return d[0]; }),
y0 = d3.extent(points, function (d) { return d[1]; })
较小更改:
domain().nice()
。当您具有负值时,它非常有用。这是doc 我不是只使用您提供的2个点,而是生成了一些随机点并将其用作数据:这也解决了缩放问题(在您完美工作的情况下,我没有做任何更改)
function generateRandomPoints () {
var points = [];
for(var i=0; i<10; i++) {
points.push([Math.random()*30 - 15, Math.random()*20-5, i, 'Cluster '+ (i+1)]);
}
return points;
}
以下是上面所有内容的摘要:
var data = [
{
"points": generateRandomPoints()
}
];
function generateRandomPoints () {
var points = [];
for(var i=0; i<10; i++) {
points.push([Math.random()*30 - 15, Math.random()*20-5, i, 'Cluster '+ (i+1)]);
}
return points;
}
var points = data[0].points;
var svg = d3.select("#cluster"),
width = +svg.attr("width"),
height = +svg.attr("height");
var k = height / width,
x0 = d3.extent(points, function (d) { return d[0]; }),
y0 = d3.extent(points, function (d) { return d[1]; }),
x = d3.scaleLinear().domain(x0).nice().range([0, width]),
y = d3.scaleLinear().domain(y0).nice().range([height, 0]),
z = d3.scaleOrdinal(d3.schemeCategory10);
var xAxis = d3.axisTop(x).ticks(12),
yAxis = d3.axisRight(y).ticks(12 * height / width);
var brush = d3.brush().on("end", brushended),
idleTimeout,
idleDelay = 350;
var tooltip = d3.select(".two")
.append("div")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.style("background", "#ffffff")
.text("a simple tooltip");
svg.append("g")
.attr("class", "brush")
.call(brush);
svg.selectAll("circle")
.data(points)
.enter()
.append("circle")
.attr("cx", function(d) {
return x(d[0]);
})
.attr("cy", function(d) {
return y(d[1]);
})
.attr("r", 4)
.attr("fill", function(d) { return z(d[2]); })
.on("mouseover", function(d){
tooltip.html(d[3]).style("top", (d3.event.pageY-10)+"px").style("left",(d3.event.pageX+10)+"px").style("visibility", "visible"); })
.on("mouseout", function(){return tooltip.style("visibility", "hidden");});
svg.selectAll(".domain")
.style("display", "none");
function brushended() {
var s = d3.event.selection;
if (!s) {
if (!idleTimeout) return idleTimeout = setTimeout(idled, idleDelay);
x.domain(x0).nice();
y.domain(y0).nice();
} else {
x.domain([s[0][0], s[1][0]].map(x.invert, x));
y.domain([s[1][1], s[0][1]].map(y.invert, y));
svg.select(".brush").call(brush.move, null);
}
zoom();
}
function idled() {
idleTimeout = null;
}
function zoom() {
var t = svg.transition().duration(750);
svg.select(".axis--x").transition(t).call(xAxis);
svg.select(".axis--y").transition(t).call(yAxis);
svg.selectAll("circle").transition(t)
.attr("cx", function(d) { return x(d[0]); })
.attr("cy", function(d) { return y(d[1]); });
}
<script src="https://d3js.org/d3.v4.min.js"></script>
<div class="one">
<div class="two">
<svg id="cluster" width="700" height="500"></svg>
</div>
</div>
希望这会有所帮助。