R中的ggvis:鼠标悬停时更改颜色
ggvis in R: Change color when mouse hover
有没有代码可以实现GGVIS首页第一张示例图?
我要的功能是当鼠标悬停在栏上时颜色会发生变化
谢谢。
尝试 fill.hover
参数:
library(ggvis)
faithful %>%
ggvis(~eruptions, fill := "#fff8dc", fill.hover := "#fcb5a2") %>%
layer_histograms(width = 0.25)
有没有代码可以实现GGVIS首页第一张示例图?
我要的功能是当鼠标悬停在栏上时颜色会发生变化
谢谢。
尝试 fill.hover
参数:
library(ggvis)
faithful %>%
ggvis(~eruptions, fill := "#fff8dc", fill.hover := "#fcb5a2") %>%
layer_histograms(width = 0.25)