View source: R/highcharts-api-add.R
hc_add_series_list | R Documentation |
Shortcut for data series from a list of data series
hc_add_series_list(hc, x)
hc |
A |
x |
A |
ds <- lapply(seq(5), function(x) {
list(data = cumsum(rnorm(100, 2, 5)), name = x)
})
highchart() %>%
hc_plotOptions(series = list(marker = list(enabled = FALSE))) %>%
hc_add_series_list(ds)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.