如何在 R 中的 highcharter 中为轴标签创建工具提示?
我正在尝试创建一个 highcharter 图表,允许用户将鼠标悬停在 y 轴标签上并显示包含一些信息的工具提示。
我在 jsfiddle http://jsfiddle.net/W5wag/2/ 中找到了这个 highcharts 示例展示了我正在尝试做的事情。
这是我尝试使用 highcharter 在 R 中执行的一个非常基本的示例,但它不起作用:
mtcars %>%
hchart('scatter', hcaes(x = mpg, y = wt)) %>%
hc_xAxis(
labels = list(
enabled = TRUE,
formatter = JS("function(){
return '<span title='My custom title'>' + this.value + '</span>';
}"
)
)
)
任何人都可以阐明我做错了什么吗?
I am trying to create a highcharter graph that allows for a user to hover over the y-axis labels and have a tooltip show up with some information.
I have found this highcharts example in jsfiddle http://jsfiddle.net/W5wag/2/ that demonstrates what I am trying to do.
Here is a very basic example of what I am trying to do in R using highcharter but it isn't working:
mtcars %>%
hchart('scatter', hcaes(x = mpg, y = wt)) %>%
hc_xAxis(
labels = list(
enabled = TRUE,
formatter = JS("function(){
return '<span title='My custom title'>' + this.value + '</span>';
}"
)
)
)
Can anybody shed some light on what I am doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论