mwGroup {manipulateWidget} | R Documentation |
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.
mwGroup(..., label = NULL, .display = TRUE)
... |
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
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") ) ) }