Description Usage Arguments Examples
These are the available options for an output object:
suspendWhenHidden. When TRUE
(the default), the output object
will be suspended (not execute) when it is hidden on the web page. When
FALSE
, the output object will not suspend when hidden, and if it
was already hidden and suspended, then it will resume immediately.
priority. The priority level of the output object. Queued outputs with higher priority values will execute before those with lower values.
1 | outputOptions(x, name, ...)
|
x |
A shinyoutput object (typically |
name |
The name of an output observer in the shinyoutput object. |
... |
Options to set for the output observer. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# 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")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.