Description Usage Arguments See Also Examples
View source: R/dashboardPage.R
This creates a dashboard page for use in a Shiny app.
1 2 | dashboardPage(header, sidebar, body, title = NULL, skin = c("blue", "black",
"purple", "green", "red", "yellow"))
|
header |
A header created by |
sidebar |
A sidebar created by |
body |
A body created by |
title |
A title to display in the browser's title bar. If no value is
provided, it will try to extract the title from the |
skin |
A color theme. One of |
dashboardHeader
, dashboardSidebar
,
dashboardBody
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Only run this example in interactive R sessions
if (interactive()) {
# Basic dashboard page template
library(shiny)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(),
title = "Dashboard example"
),
server = function(input, output) { }
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.