这是我的代码:
#Start up rickshaw charts
library(rCharts)
df.plot <- Rickshaw$new()
#Set chart parameters
df.plot$layer(
y ~ x,
data = df.aggregate2,
type = "area",
groups = "var2",
colors= c("#E1CA4C","#74D2E3","#B70002","#987989","#9A9A9A","#ACD759","#5FCC5C","#4C6676"),
height = 500,
width = 800
)
df.plot$set(
hoverDetail = TRUE,
yAxis = TRUE,
xAxis = TRUE,
shelving = FALSE,
legend = TRUE,
slider = TRUE,
highlight = TRUE,
unstack = TRUE,
)
df.plot$xAxis( tickFormat=
"#!function(d) {
return d3.time.format('%Y-%m-%d')(new Date( d * 86400000 ));
}
!#" )
#Plot
df.plot$print('Performance', include_assets = TRUE, cdn = TRUE)
我的悬停看起来像这样:
2013年9月23日星期一00:00:00 GMT var 1045.00
我希望它看起来像这样: 2013年9月23日,星期一 var 1045 *没有时间&amp;没有小数点。
答案 0 :(得分:3)
您可以使用hoverDetail
方法并将其传递给格式化程序函数。您需要编写一个输出所需字符串的javascript函数。
moods.plot$hoverDetail(formatter = "#! function(series, x, y){
} !#")
您可以通过查看this page
的来源查看formatter
功能的示例