我使用此example创建堆积条形图。图表工作和渲染但我无法添加鼠标悬停标签。
我试过了......
DATE.selectAll("rect")
.data(function(d) { return d.ages; })
.enter().append("rect")
.attr("width", x.rangeBand())
.attr("y", function(d) { return y(d.y1); })
.attr("height", function(d) { return y(d.y0) - y(d.y1); })
.style("fill", function(d) { return color(d.name); });
.append("svg:title")
.text(functino(d){return "foo"});
但是在添加.append("svg:title...
之后,图表会停止渲染。如果我删除了.style("fill...
行,则图表呈现,但它没有堆叠,并且没有鼠标悬停功能。
我也尝试过使用工具提示路线。 (Source)
.on("mouseover", function() { tooltip.style("display", null); })
.on("mouseout", function() { tooltip.style("display", "none"); })
.on("mousemove", function(d) {
var xPosition = d3.mouse(this)[0] - 15;
var yPosition = d3.mouse(this)[1] - 25;
tooltip.attr("transform", "translate(" + xPosition + "," + yPosition + ")");
tooltip.select("text").text(d.y);
});
// Prep the tooltip bits, initial display is hidden
var tooltip = svg.append("g")
.attr("class", "tooltip")
.style("display", "none");
tooltip.append("rect")
.attr("width", 30)
.attr("height", 20)
.attr("fill", "white")
.style("opacity", 0.5);
tooltip.append("text")
.attr("x", 15)
.attr("dy", "1.2em")
.style("text-anchor", "middle")
.attr("font-size", "12px")
.attr("font-weight", "bold");
但仍然没有运气。我需要加载一个库吗?不知道发生了什么。
答案 0 :(得分:1)
当您尝试附加title
时图表停止渲染,因为您有拼写错误:它是function
,而不是functino
。
除此之外,您还需要获取每个堆积条的值:
.append("title")
.text(function(d){
return d[1]-d[0]
});
以下是演示:https://bl.ocks.org/anonymous/raw/886d1749c4e01e191b94df23d97dcaf7/
但我不喜欢<title>
。他们不是很多才多艺。因此,不是创建另一个<text>
,而是作为您链接的第二个代码,我更喜欢创建div:
var tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
我们以这种方式定位和设置HTML文本:
.on("mousemove", function(d) {
tooltip.html("Value: " + (d[1] - d[0]))
.style('top', d3.event.pageY - 10 + 'px')
.style('left', d3.event.pageX + 10 + 'px')
.style("opacity", 0.9);
}).on("mouseout", function() {
tooltip.style("opacity", 0)
});
以下是演示:https://bl.ocks.org/anonymous/raw/f6294c4d8513dbbd8152770e0750efd9/