我正在使用dygraphs中的R绘制时间序列,如下所示:

library(dygraphs)
library(htmlwidgets)
library(data.table)

now <- Sys.time()
dataset <- data.table(time = as.POSIXct(now+1:10),value = 1:10)
d <- dygraph(dataset)

图例中显示的日期格式取决于计算机的语言环境,我无法使其固定。

x轴的标签可以设置如下格式:
valueFormatter<-"function formatValue (ms) {
                return ms.toISOString();
}"

d <- d%>%dyAxis("x", axisLabelFormatter=JS(valueFormatter))

但是,我不知道如何为传奇做这件事。

最佳答案

axisLabelFormatter相似,存在legendForamtter。参见示例:

https://github.com/danvk/dygraphs/pull/683
http://dygraphs.com/tests/legend-formatter.html

09-25 18:08