I want to customize the tooltip in the following shiny app:
library(shiny)
library(bs4Dash)
ui <- fluidPage(
tooltip(
actionButton("goButton", "Hier klicken!"),
title = "This is a ridiculous blablabla example text
even more bla bla bla",
placement = "right"
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Ideally the text is shown as flush left, the background color is another one and the tooltip-box is larger. Within the help of the bs4Dash package i found only the follwing link https://getbootstrap.com/docs/4.0/components/tooltips/ but i dont know where to place it.