我正在学习使用javascript和d3.js.我制作了一个简单的线图,其工具提示完美无缺(参见here)。 我决定让它具有响应性,因此使用模板创建一个新模板(参见here)。 响应性还可以但我无法添加工具提示div。 有什么帮助吗?
这里的代码片段是'有问题的:
chart2.selectAll("dot")
.data(data)
.enter().append("rect")
.attr("width", 1)
.attr("height", 120)
.style("opacity", 0) // set the element opacity
.style("stroke", "#6f6f6f") // set the line colour
.attr("xScale", function(d) { return xScale(d.date); })
.attr("yScale", function(d) { return yScale(d.close)-60; })
.on("mouseover", function(d)
{
d3.select(this).attr("width", 1).style("opacity", .8) ; //il punto cambia al mousover (bellissmo)
div.transition()
.duration(70)
.style("opacity", .8)
.style("border", "1px");
div .html(formatTime(d.date) + "<br/>" + d.close)
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 64) + "px");
})
.on("mouseout", function(d) {
d3.select(this).attr("r", 5.1).style("opacity", .0);
div.transition()
.duration(200)
.style("opacity", 0);
});
div在这里定义:
var div = d3.select("#chart2").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
并且在css中是:
div.tooltip {
position: absolute;
text-align: center;
width: 95px;
height: 40px;
padding: 2px;
font: 15px arial;
font-weight: bold;
color: black;
background: #f0f0f0;
pointer-events: none;
}
答案 0 :(得分:0)
将div定义为以下并选择“body”并在那里附加div
ContinueWith