我在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))
但是,我不知道如何为传奇做到这一点。
答案 0 :(得分:1)
与axisLabelFormatter
类似,有legendForamtter
。参见示例:
https://github.com/danvk/dygraphs/pull/683 http://dygraphs.com/tests/legend-formatter.html