R/OutputGgplotly.R

Defines functions OutputGgplotly

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"
    )
}
}
irisweyermenkhoff/toyota-idv-functions documentation built on March 4, 2020, 9:57 a.m.