在鼠标悬停上显示折线图注释

时间:2016-03-09 15:07:04

标签: javascript google-visualization

我正在制作一些显示大量应用的谷歌图表,我遇到的问题是我想在线图中的某处添加投票计数,所以我做了一些谷歌搜索并认为它会是最好在我的图表中使用注释。所以我试过了,但看起来很乱。

enter image description here

有没有办法在鼠标悬停时显示注释?或者有没有办法在鼠标悬停弹出标签中添加投票金额?

代码有点无关紧要,因为我的代码运行正常,我正在使用本文档中使用的标准数据注释:https://developers.google.com/chart/interactive/docs/customizing_tooltip_content#annotating-data

1 个答案:

答案 0 :(得分:0)

在查看文档之后,我发现了

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

而不是

data Digit = Zero | One
convBNum :: [Digit] -> Int
convBNum [] = 0
convBNum (x:xs)
  | x == One = 2^length xs + convBNum xs
  | otherwise = convBNum xs

给出了我想要的结果,角色:当将鼠标悬停在我正常需要的点上时,域名会更改弹出标题!

enter image description here