tablerTagList | R Documentation |
Build a tabler tag list
tablerTagList(...)
... |
Slot for tablerTag. |
David Granjon, dgranjon@ymail.com
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerTagList(
lapply(X = 1:5, FUN = function(i) {
tablerTag(name = i)
})
)
)
),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.