overlayPlotOutput {overshiny} | R Documentation |
Create a plot output element with overlays
Description
Render a shiny::renderPlot()
within an application page, with support for
overlays.
Usage
overlayPlotOutput(outputId, width, height)
Arguments
outputId |
The |
width , height |
Image width and height. Must be a valid CSS unit, like
|
Value
A plot output element that can be added to a UI definition.
See Also
overlayServer()
, for a complete example.
Examples
ui <- shiny::fluidPage(
useOverlay(),
overlayPlotOutput("my_plot", 640, 480)
# further UI elements here . . .
)
[Package overshiny version 0.1.0 Index]