Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set title/header in Shiny Dashboard

Tags:

r

shiny

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:

Snapshot of my title

How can I remove the <title> part and just have my text in the header?

like image 526
Mathias711 Avatar asked Jan 10 '17 08:01

Mathias711


1 Answers

You can set the title via:

ui <- dashboardPage(title="Browser tab title", 
   dashboardHeader(title = "Dashboard title"), 
   dashboardSidebar()
)
like image 130
Buggy Avatar answered Nov 06 '22 00:11

Buggy