Google Chart - 显示点上的数据注释 - 交互式折线图
我需要在折线图上显示数据点,即鼠标悬停在某个点上时出现的数据点,我需要默认情况下全部显示它们,即不是通过鼠标悬停显示。有什么线索吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
字符串类型的
data.addRows
在添加记录时再添加一个值。这将显示在图表上该点的正上方。
谢谢!
You can use
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!