echarts4r:液体填充颜色

时间:2018-08-05 06:14:11

标签: r data-visualization

如何更改e_liquid中的颜色?这是我最近的尝试:

liquid <- data.frame(val = c(0.2, 0.2), 
                     col = c("red", "red"))

liquid %>% 
  e_charts() %>% 
  e_liquid(serie = val, color = col) 

您可以看到它不是红色的。 enter image description here

1 个答案:

答案 0 :(得分:1)

很抱歉,那是 一个错误。

重新安装devtools::install_github("JohnCoene/echarts4r"),然后重新运行

library(echarts4r)

liquid <- data.frame(val = c(0.2, 0.3), 
                     col = c("red", "blue"))

liquid %>% 
    e_charts() %>% 
    e_liquid(serie = val, color = col)

enter image description here