Radio
radio.Rd
Radio buttons.
A range slider.
A slider.
Arguments
- id
The id of the slider.
- ...
Any named properties.
- class
Additional CSS classes.
- value
Value of the radio button.
Examples
radio_group(
id = "radio",
radio(
"hello",
text = "hello",
checked = TRUE
),
radio(
"world",
text = "world"
)
)
#> <div class="ui5-radio-group" id="radio">
#> <ui5-radio-button data-value="hello" name="radio" text="hello" checked></ui5-radio-button>
#> <ui5-radio-button data-value="world" name="radio" text="world"></ui5-radio-button>
#> </div>
range(
"range",
`start-value` = 10,
`end-value` = 42,
min = 0,
max = 100
)
#> <ui5-range-slider id="range" start-value="10" end-value="42" min="0" max="100"></ui5-range-slider>
slider(
"slider",
value = 20,
min = 0,
max = 100,
step = 5,
`show-tooltip` = TRUE,
`show-tickmarks` = TRUE,
`label-interval` = 2
)
#> <ui5-slider id="slider" value="20" min="0" max="100" step="5" show-tooltip show-tickmarks label-interval="2"></ui5-slider>