rbokeh icon indicating copy to clipboard operation
rbokeh copied to clipboard

tool positioning lost with rbokehOutput when height is set at %

Open knmackay opened this issue 7 years ago • 0 comments

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)`

knmackay avatar Apr 09 '18 17:04 knmackay