outputOptions: Set options for an output object.

Description Usage Arguments Examples

View source: R/shiny.R

Description

These are the available options for an output object:

Usage

1

Arguments

x

A shinyoutput object (typically output).

name

The name of an output observer in the shinyoutput object.

...

Options to set for the output observer.

Examples

 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)

sheikhbarabas/shiny documentation built on May 29, 2019, 9:22 p.m.