Highcharts Area Range Plot in rCharts
问题 does anyone know if it's possible to create a area range style plot in rCharts (http://www.highcharts.com/demo/arearange-line)? My basic problem is the visualisation of a simple forecast scenario: set.seed(123134) y <- c(rnorm(20, 35, 2), rep(NA, 10)) data <- data.frame(y=y) data$fc <- c(rep(NA, 20), rnorm(10, 35, 1)) data$lci <- data$fc-1 data$uci <- data$fc+1 h1 <- Highcharts$new() h1$chart(type="line") h1$series(data=data$y, marker = list(symbol = 'circle'), connectNulls = TRUE) h1$series