在d3气泡图上禁用html工具提示?

时间:2014-07-25 18:25:52

标签: html d3.js

如果你看一下这个例子:http://bl.ocks.org/mbostock/4063269

当鼠标悬停在圆圈文本上时,会弹出一个html工具提示。有没有办法禁用它?

我认为使用css可以解决问题:

body {
   font-family: Trebuchet, sans-serif;
   color: black;
   font-size: 14px;
   font-weight: normal;
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
    user-select: none;
 }

但没有运气。

1 个答案:

答案 0 :(得分:4)

浏览器根据title属性显示工具提示。如果删除添加此行的JavaScript行,则不再显示工具提示。