工具提示未正确显示

时间:2017-09-08 20:44:38

标签: javascript html css angularjs google-visualization

我正在开发angularjs谷歌排行榜。我想显示图表的水平滚动条,默认情况下应该从右向左滚动

在应用css代码从右向左滚动之前的工作演示(鼠标悬停时的工具提示按预期显示): Working Demo before horizontal scrollbar is applied from right to lefft

应用css代码从右向左滚动后进行演示 Demo, tooltip is not showing as expected when mouseover on the bar

html代码:

 <div ng-controller="myController" style="width:100%;height:50%;margin-left:0;white-space: nowrap;overflow-x:auto;overflow-y:hidden;direction:rtl;left:0;top:0;">
   <div style="width:90%;height:90%;" google-chart chart="myChart">
   </div> </div>

css代码:

div[aria-label="A tabular representation of the data in the chart."] {
  left: 0 !important;}

问题是工具提示onmouse结束了吧,任何输入?

1 个答案:

答案 0 :(得分:1)

您需要将包含图表的div更改为:

 <div style="width:100%;height:50%;margin-left:0;white-space: nowrap;overflow-x:auto;overflow-y:hidden;right:0;top:0;">

您可以对其进行测试here