bokeh / rbokeh

R interface to Bokeh http://hafen.github.io/rbokeh/
Other
313 stars 67 forks source link

tool positioning lost with rbokehOutput when height is set at % #225

Open knmackay opened 6 years ago

knmackay commented 6 years ago

When the height parameter uses %, the toolbar_location defaults to "left," even when specified.

`ui <- fluidPage( rbokehOutput("rbokeh", height = "500%") )

server <- function(input, output, session) { output$rbokeh <- renderRbokeh({ figure(toolbar_location = "above") })

}

shinyApp(ui, server)`