隐藏 Google Visualization API 鼠标悬停时的工具提示

发布于 2024-11-05 17:17:04 字数 71 浏览 0 评论 0原文

当使用饼图在 Google Visualization API 中将鼠标悬停在饼图切片上时,是否有任何方法可以隐藏弹出窗口?谢谢

Is there any way to hide the popup when a pie slice is moused-over in the Google Visualization API using Pie Charts? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我偏爱纯白色 2024-11-12 17:17:04

要删除工具提示,您必须这样做:

chart.draw(data, {tooltip: {trigger:'none'}});

如果您不希望图表对任何用户操作做出反应,您也可以删除所有交互性:

chart.draw(data, {enableInteractivity: false});

To remove the tooltips you have to do it this way:

chart.draw(data, {tooltip: {trigger:'none'}});

You can also remove all interactivity if you don't want your graph to react to any user actions:

chart.draw(data, {enableInteractivity: false});
南城追梦 2024-11-12 17:17:04

我会尝试将触发器设置为“无”

chart.draw(data, {trigger:'none'});

I would try to set trigger to 'none

chart.draw(data, {trigger:'none'});
断念 2024-11-12 17:17:04

目前没有打开/关闭工具提示的选项。但以下可以解决这个问题:

tooltip_iframe = window.frames[document.getElementById('your chart id').firstChild.name];
tooltip_dom = tooltip_iframe.document.getElementById('chart').firstChild.nextSibling.nextSibling;
tooltip_dom.style.display = 'none';

There is no option to turn on/off the tooltip currently. But following could do the trick:

tooltip_iframe = window.frames[document.getElementById('your chart id').firstChild.name];
tooltip_dom = tooltip_iframe.document.getElementById('chart').firstChild.nextSibling.nextSibling;
tooltip_dom.style.display = 'none';
酒浓于脸红 2024-11-12 17:17:04

这个对我有用

 var options = { 
    tooltip: {trigger:'none'}
     };
    chart.draw(data, options);

This one works for me

 var options = { 
    tooltip: {trigger:'none'}
     };
    chart.draw(data, options);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文