谷歌图表传奇的推特,工具提示即将落后于模式

时间:2016-08-01 06:18:16

标签: javascript twitter-bootstrap css3 charts google-visualization

我在Bootstrap Modal中使用谷歌图表,而传说中有很长的名字。当我悬停在图例上时,显示图例全名的工具提示(默认)将在Bootstrap模态后面。

The full name of legend is coming behind bootstrap modal

如何让它出现在模态上?

2 个答案:

答案 0 :(得分:0)

如果您可以使用CSS设置样式,则可以使用z-index来操纵它上面显示的“级别”

答案 1 :(得分:0)

最后,在工作了2个小时之后,我得出结论,有一个类负责设计传说中悬停的工具提示。您可以使用.charts-tooltip

轻松设置工具提示的样式

我使用的设置:

.charts-tooltip  {
  color: #f00;
  width:300px;
  word-wrap:break-word;
  z-index: 2147483647;
}

enter image description here