| ds_chip_group | R Documentation |
Create a reactive group of toggle chips. Selected chip values are reported
to Shiny as a character vector via input[[inputId]].
ds_chip_group(inputId, ..., class = NULL)
inputId |
Shiny input ID |
... |
|
class |
Additional CSS classes |
A Shiny tag object
## Not run:
ds_chip_group(
"languages",
ds_chip("R", value = "r", selected = TRUE),
ds_chip("Python", value = "python"),
ds_chip("Julia", value = "julia")
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.