shinyDashboardLogo {dashboardthemes} | R Documentation |
Calls a custom logo object created using shinyDashboardLogoDIY
shinyDashboardLogo(
theme,
boldText = "Shiny",
mainText = "App",
badgeText = "v1.1"
)
theme |
String. Name of theme to be used |
boldText |
String. Bold text for the logo. |
mainText |
String. Main text for the logo. |
badgeText |
String. Text for the logo badge. |
HTML code. Logo for shinydashboard's sidebar.
This logo design was inspired from http://www.dataseries.org/.
shinyDashboardLogoDIY, shinyDashboardThemes
#...
### ui
#ui <- dashboardPage(
### ui header
#dashboardHeader(
### changing logo
title = shinyDashboardLogo(
theme = "blue_gradient",
boldText = "Shiny",
mainText = "App",
badgeText = "v1.1"
)
#...