问题
Using highcharter, is there a way to replicate geom_ribbon form ggplot2
?
回答1:
Yes, it is called arearange
. You can check the 3rd example in https://cran.r-project.org/web/packages/highcharter/vignettes/charting-data-frames.html.
highchart() %>%
hc_add_series(data, "arearange", hcaes(x, low = lowvalue, high = highvalue))
来源:https://stackoverflow.com/questions/47782623/is-there-an-equivalent-to-geom-ribbon-in-highcharter