在plotlyjs中将悬停文本bg设置为白色

时间:2016-10-19 00:04:42

标签: d3.js plotly

是否可以在任何地方覆盖plotly js的css,以便您可以设置悬停文本的背景颜色?

1 个答案:

答案 0 :(得分:-1)

在情节github项目中,

Issue 102显示工具提示的样式是使用内嵌样式完成的,这些样式仅在javascript中悬停时出现。

该问题的

This suggestion是一种可行的解决方法:

graphDiv.on('plotly_hover', function(data) {
  querySelectorAll(".hovertext text").forEach( /* ... */);
  // ...
});