e_list | R Documentation |
simply pass a list of options, similar to a JSON
.
e_list(e, list, append = FALSE)
e |
An |
list |
A |
append |
if |
N <- 20 # data points
opts <- list(
xAxis = list(
type = "category",
data = LETTERS[1:N]
),
yAxis = list(
type = "value"
),
series = list(
list(
type = "line",
data = round(runif(N, 5, 20))
)
)
)
e_charts() |>
e_list(opts)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.