# One serie
apexchart() %>%
ax_series(list(
name = "rnorm",
data = rnorm(10)
))
# Two series
apexchart() %>%
ax_series(
list(
name = "rnorm 1",
data = rnorm(10)
),
list(
name = "rnorm 2",
data = rnorm(10)
)
)
Run the code above in your browser using DataLab