Add Sparkline Dependencies to Tag or 'htmlwidget'
spk_add_deps.RdAdd Sparkline Dependencies to Tag or 'htmlwidget'
Examples
# use spk_add_deps with other htmlwidgets
library(sparkline)
library(formattable)
fw <- as.htmlwidget(
formattable(
data.frame(
id = c("a", "b"),
sparkline = c(
spk_chr(runif(10,0,10), type="bar"),
spk_chr(runif(10,0,5), type="bar")
),
stringsAsFactors = FALSE
)
)
)
spk_add_deps(fw)
# use spk_add_deps with htmltools/shiny tags
library(sparkline)
library(htmltools)
div <- tags$div(
spk_chr(1:10, type="bar")
)
spk_add_deps(div)
#> <div><span id="htmlwidget-36aa3d2a04d42bbc2145" class="sparkline html-widget"></span>
#> <script type="application/json" data-for="htmlwidget-36aa3d2a04d42bbc2145">{"x":{"values":[1,2,3,4,5,6,7,8,9,10],"options":{"type":"bar","height":20,"width":60},"width":60,"height":20},"evals":[],"jsHooks":[]}</script></div>