我似乎无法将工具提示格式化为 4 行。我有 ap 元素并想将其分解。我尝试添加 br 和 \n 但它们似乎没有帮助。
var tooltip = d3.select("body")
.append("div")
.attr('class', 'tooltip');
tooltip.append("p");
Run Code Online (Sandbox Code Playgroud)
//这里我使用 selectAll 和追加圆圈来浏览我的数据。“.on”属性是当我将鼠标悬停在圆圈上时我想看到工具提示
.on("mousemove", function(d){
if (d.source == "target") {
tooltip.select("p").text(d.source);
} else {
tooltip.select("p").text("Line 1: " + "this is line 1" + "\n" + "line 2: " + "this is line 2");
}
Run Code Online (Sandbox Code Playgroud)