只显示一个坐标
showing only one coordinate
我有以下但它只显示x的坐标,当鼠标悬停在图上时我需要两者都出现,我试图为(dc)做另一个是y坐标,但什么都没有工作,我什至尝试将 return (dm)
更改为 return (d)
但它会显示(对象)而不是点,有什么想法吗?
pplot.append("title")
.text(function(d,i) {
return (dm)
});
我假设您想要 return 具有 x
和 y
坐标的字符串。
因此您应该能够分别从 d
对象访问每个坐标并使用 +
运算符连接它们:
ascatter.append("title")
.text(function(d,i) {
return "x: " + d.a + "y: " + d.b;
});
我有以下但它只显示x的坐标,当鼠标悬停在图上时我需要两者都出现,我试图为(dc)做另一个是y坐标,但什么都没有工作,我什至尝试将 return (dm)
更改为 return (d)
但它会显示(对象)而不是点,有什么想法吗?
pplot.append("title")
.text(function(d,i) {
return (dm)
});
我假设您想要 return 具有 x
和 y
坐标的字符串。
因此您应该能够分别从 d
对象访问每个坐标并使用 +
运算符连接它们:
ascatter.append("title")
.text(function(d,i) {
return "x: " + d.a + "y: " + d.b;
});