Google Visualization API(图表)工具提示无法在Firefox中使用

时间:2011-07-20 10:36:07

标签: google-visualization

google.visualization.BarChart 不会在Firefox中显示工具提示,但会在Chrome中显示。

我在Linux上使用Firefox 4.0.1。

2 个答案:

答案 0 :(得分:4)

这可能与问题598“Google图表工具:工具提示/行未在Firefox上使用基本标记显示”在google-visualization-api-issues上有关,该问题在base tag与网页位置不同时重现。

一种可能的解决方案是使用jQuery来更改标记的href属性。

jQuery("base").attr('href', document.location);
chart.draw(data, options);

答案 1 :(得分:0)

我认为在框架绘图中添加base-tag会更好,比如

chart.draw(data, options);

     jQuery(document).ready
     (
      function()
      {
       jQuery('iframe[name^=Drawing_Frame]').contents().find('head').append('<base href="'+document.location+'"></base>')
      }
     );

它对我有用