如何在 R 中的 highcharter 中为轴标签创建工具提示?

发布于 2025-01-09 17:45:50 字数 605 浏览 0 评论 0原文

我正在尝试创建一个 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文