OutputGgplotly <- function(list_reactivevalue, i,
render_shiny = TRUE) {
if (render_shiny == TRUE) {
renderPlotly({
ggplotly(
list_reactivevalue[[i]],
tooltip = "text"
)
})
} else {
ggplotly(
list_reactivevalue[[i]],
tooltip = "text"
)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.