panel_item | R Documentation |
Designed to be grouped using panel_group
element. Used to handle shiny
inputs in the encoding panel.
panel_item(title, ..., collapsed = TRUE, input_id = NULL)
title |
( |
... |
content of panel |
collapsed |
( |
input_id |
( |
(shiny.tag
)
library(shiny)
panel_item(
title = "Display",
collapsed = FALSE,
checkboxGroupInput(
"check",
"Tables display",
choices = LETTERS[1:3],
selected = LETTERS[1]
),
radioButtons(
"radio",
label = "Plot type",
choices = letters[1:2],
selected = letters[1]
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.