unsuspendModule(id, session = getDefaultReactiveDomain())
id | An id string that corresponds with the id used to call the module's UI function. |
---|---|
session | shiny server session object |
"by default, renderPlot
will try to set the plot output size to
the same width/height of the plotOutput
, which will be 0 by 0 pixels
when it's not actually visible. You can work around this if necessary by
providing explicit width
and height
arguments to the
renderPlot()
function call itself (NOT the call to plotOutput
and not any function calls inside the renderPlot
code block).
For example, renderPlot({...}, width=400, height=300)
"