Skip to contents

Render a ggiraph within an application page.

This function is now deprecated, users should now use function girafeOutput().

Usage

ggiraphOutput(outputId, width = "100%", height = "500px")

Arguments

outputId

output variable to read the ggiraph from.

width

widget width

height

widget height

Examples

if (FALSE) {
if( require(shiny) && interactive() ){
  app_dir <- file.path( system.file(package = "ggiraph"), "examples/shiny/cars" )
  shinyAppDir(appDir = app_dir )
 }
if( require(shiny) && interactive() ){
  app_dir <- file.path( system.file(package = "ggiraph"), "examples/shiny/crimes" )
  shinyAppDir(appDir = app_dir )
}
}