I want to set the title of my Shiny dashboard to something reasonable and informative, but I cannot get that working. I know have got
tags$title("Dashboarding through the snow")
in my ui.R
(within the dashboardPage
environment if that makes a difference) and this results in this:
How can I remove the <title>
part and just have my text in the header?
You can set the title via:
ui <- dashboardPage(title="Browser tab title",
dashboardHeader(title = "Dashboard title"),
dashboardSidebar()
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With