Description Usage Arguments Examples
side-by-side selectizeInput
1 | selectizeInput3(..., width = 100)
|
... |
Further arguments to be passed to selectizeInput |
width |
Input width in pixel |
1 2 3 4 5 6 7 8 9 10 11 | library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
selectizeInput3("color", "color", choices=colors())
)
server <- function(input, output) {
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.