我正在尝试为我的 highcharter 图表添加注释,不知道为什么它不起作用,而是显示 [object] [object]。
这是我的数据,
structure(list(variable = structure(c(15522, 15553, 15584, 15614,
15645, 15675, 15706, 15737, 15765, 15796), class = "Date"), value = c(417376,
423563, 430290, 455643, 451542, 422419, 429472, 451694, 454900,
456844)), row.names = c(NA, 10L), .Names = c("variable", "value"
), class = "data.frame")
代码,我试图只为图中的最后一个值添加注释,可能在一个矩形框中。
currmonth <- max(pricedata$variable)
pricedata$value <- round(pricedata$value)
highchart(type = "chart") %>%
hc_chart(backgroundColor = "white",zoomType = 'x') %>%
hc_add_series_times_values(pricedata$variable, pricedata$value, name = "Price") %>%
hc_annotations(list(xValue = currmonth, title = list(text = 'Annotated chart!')))
这是图表,
您可以看到注释在左上角为 [object][object]。
编辑:尝试了答案,但没有用。