plotLines标签不会显示在Chrome中,而是显示在firefox

时间:2018-11-05 11:31:15

标签: javascript r highcharts r-highcharter

我来找您谈一个用javascript已经解决但R中还没有解决的问题。 我使用版本{0.5.0}下的软件包highcharter在其上绘制条形图和一条垂直线。问题是链接到该行的标签在我的chrome浏览器上没有显示,而在Firefox浏览器上却显示。我已经在纯javascript中看到了此问题,但从未在R-highcharter中看到过。

你有个主意吗?

这里有一个可复制的示例(在Firefox上工作,但在Chrome上不行):

require(highcharter)
require(data.table)

    Donnees <- data.table(y=c(10,20,30),name=c("A","B","C"))

highchart() %>%
  hc_chart(type = "bar",
           polar = FALSE) %>%
  hc_xAxis(categories=Donnees[,name]
  ) %>%
  hc_yAxis( title = list(text = "Anything"),
           plotLines = list(list(
             value = 15,
             color = '#070070',
             width = 3,
             # zIndex = 4,
             label = list(text = "I want a label pls"
                          ,style = list( color = 'blue', fontWeight = 'bold' )
             )))) %>% 
  hc_add_series(Donnees)

0 个答案:

没有答案