Google Chart - 显示点上的数据注释 - 交互式折线图

发布于 2024-12-02 21:39:27 字数 73 浏览 0 评论 0原文

我需要在折线图上显示数据点,即鼠标悬停在某个点上时出现的数据点,我需要默认情况下全部显示它们,即不是通过鼠标悬停显示。有什么线索吗?

I need to show data points on the line chart, i.e. which appear on mouse over at a point, i need them all displayed by default i.e. not by mouse over. Any clues?

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

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

发布评论

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

评论(1

尽揽少女心 2024-12-09 21:39:27

您可以使用

data.addColumn({type: 'string', role: 'annotation'});

字符串类型的 data.addRows 在添加记录时再添加一个值。

这将显示在图表上该点的正上方。

谢谢!

You can use

data.addColumn({type: 'string', role: 'annotation'});

and add one more value at the time of adding record with data.addRows of type string.

That will be shown just above the point on chart.

Thanks!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文