TRUE
(the
default), the output object will be suspended (not
execute) when it is hidden on the web page. WhenFALSE
, the output object will not suspend when
hidden, and if it was already hidden and suspended, then
it will resume immediately.outputOptions(x, name, ...)
output
).# Get the list of options for all observers within output
outputOptions(output)
# Disable suspend for output$myplot
outputOptions(output, "myplot", suspendWhenHidden = FALSE)
# Change priority for output$myplot
outputOptions(output, "myplot", priority = 10)
# Get the list of options for output$myplot
outputOptions(output, "myplot")
Run the code above in your browser using DataLab