rangeInput | R Documentation |
rangeInput()
creates a simple numeric range input.
rangeInput(id, min = 0, max = 100, default = min, step = 1, ...)
updateRangeInput(
id,
value = NULL,
enable = NULL,
disable = NULL,
session = getDefaultReactiveDomain()
)
id |
A character string. The id of the reactive input. |
min |
A number specifying the minimum value of the input, defaults to
|
max |
A number specifying the maximum value of the input, defaults to
|
default |
A number between |
step |
A number specifying the interval step of the input, defaults to
|
... |
Optional named arguments specifying HTML attributes for the input element. |
value |
A number specifying a new value for the input, defaults to
|
disable |
A boolean. The checkbox starts disabled if |
session |
A shiny session object. |
The sophistication of this input will improve as browsers adopt the latest HTML standards.
Other inputs:
fileInput()
,
input_button()
,
input_checkbox()
,
input_checkbox_group()
,
input_chip()
,
input_form()
,
input_list_group()
,
input_menu()
,
input_radio_group()
,
radiobarInput()
,
selectInput()
,
textInput()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.