Description Usage Arguments Value See Also Examples
This function generates a collapsible box containing inputs. It can be useful when there are a lot of inputs and one wants to group them.
1 |
... |
inputs that will be grouped in the box |
label |
label of the group inputs |
.display |
expression that evaluates to TRUE or FALSE, indicating when the group should be shown/hidden. |
Input of type "group".
Other controls:
mwCheckboxGroup()
,
mwCheckbox()
,
mwDateRange()
,
mwDate()
,
mwNumeric()
,
mwPassword()
,
mwRadio()
,
mwSelectize()
,
mwSelect()
,
mwSharedValue()
,
mwSlider()
,
mwText()
1 2 3 4 5 6 7 8 9 10 11 12 13 | if(require(dygraphs)) {
mydata <- data.frame(x = 1:100, y = rnorm(100))
manipulateWidget(
dygraph(mydata[range[1]:range[2], ],
main = title, xlab = xlab, ylab = ylab),
range = mwSlider(1, 100, c(1, 100)),
"Graphical parameters" = mwGroup(
title = mwText("Fictive time series"),
xlab = mwText("X axis label"),
ylab = mwText("Y axis label")
)
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.