如何自定义d3plus大工具提示

时间:2015-05-01 14:02:03

标签: javascript d3.js d3plus

我正在使用d3plus进行可视化。这是我的小提琴。http://jsfiddle.net/kasimsert/wLvpph35/11/ 我想对工具提示,矩形等元素进行一些基本的自定义处理。但是我找不到用d3选择器做的方法。就我看到的问题是当选择器函数工作时,这个元素不在那里。为此,我已将onLoad函数添加到html正文但没有变化。我的问题是,在代码流程中我应该调用这样的代码块才能生效?

d3.select(".d3plus_tooltip_container")
    .style("background-color", 'red');

1 个答案:

答案 0 :(得分:0)

...
.tooltip({
    "share":false,
    "html" : "Summary information about the Service, and may be some links to the external applications",
    "font": {size:"auto"},
    "background": "red" // add this
})

检查文档here