我想在工具提示中显示两个条形图的差异。我想我可以通过格式化程序函数访问这些值。但是我尝试的一切都不起作用。这是我的代码:
highchart() %>%
hc_add_series(Marktvolumen$`2017`, type = "column", name = "2017") %>%
hc_add_series(Marktvolumen$`2018`, type = "column", name = "2018") %>%
hc_add_series(Marktvolumen$Aenderung, type = "column", name = "change", visible=FALSE, showInLegend=FALSE) %>%
hc_xAxis(categories = Marktvolumen$Familie) %>%
hc_plotOptions(series = list(showInLegend = TRUE, dataLabels = list(enabled = TRUE, color = "#FFFFFF"))) %>%
hc_tooltip(formatter = JS(paste0('function () {
return this.y[1] - this.y[0];
}')))
差异已经是图表对象,但不可见(Marktvolumen$Aenderung
)。对我来说,是通过系列对象显示差异还是通过javascript计算差异并不重要:-)
这是条形图:
谢谢!