How can I make my R Shiny Dashboard fill the entire Page?2019 Community Moderator ElectionHow to make a great R reproducible exampleHow can we make xkcd style graphs?Resize party package ctree plot using a R shiny sliderHow to change color in shiny dashboard?What are the best practices to make shiny application run faster?HTML page inside Shiny dashboardHow to unisolate an particular input inside an isolate() function in R shiny dashboardLoading Page for Shiny Dashboardui/server responsiveness uploading file shiny

Would mining huge amounts of resources on the Moon change its orbit?

What is the difference between something being completely legal and being completely decriminalized?

Would it be believable to defy demographics in a story?

is this saw blade faulty?

Inhabiting Mars versus going straight for a Dyson swarm

Do native speakers use "ultima" and "proxima" frequently in spoken English?

Why doesn't the fusion process of the sun speed up?

Is there any common country to visit for uk and schengen visa?

Why are there no stars visible in cislunar space?

Does convergence of polynomials imply that of its coefficients?

Probabilities in non-stationary states

Have any astronauts/cosmonauts died in space?

CLI: Get information Ubuntu releases

Make the largest box from a cardboard sheet

10 year ban after applying for a UK student visa

Someone scrambled my calling sign- who am I?

Exposing a company lying about themselves in a tight-knitted industry: Is my career at risk on the long run?

Why does Surtur say that Thor is Asgard's doom?

Asserting that Atheism and Theism are both faith based positions

Air travel with refrigerated insulin

Why is "la Gestapo" feminine?

What (if any) is the reason to buy in small local stores?

Help with identifying unique aircraft over NE Pennsylvania

Determine voltage drop over 10G resistors with cheap multimeter



How can I make my R Shiny Dashboard fill the entire Page?



2019 Community Moderator ElectionHow to make a great R reproducible exampleHow can we make xkcd style graphs?Resize party package ctree plot using a R shiny sliderHow to change color in shiny dashboard?What are the best practices to make shiny application run faster?HTML page inside Shiny dashboardHow to unisolate an particular input inside an isolate() function in R shiny dashboardLoading Page for Shiny Dashboardui/server responsiveness uploading file shiny










1















I have an R Shiny app that I'm making using shinydashboard, but I'm having a problem getting the UI to fill the browser window.



Here is my ui.R output:



#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#

## app.R ##
library(rsconnect)
library(shinydashboardPlus)
library(shinydashboard)
library(shiny)

#shinyApp(ui = ui, server = server, options = list(height = 1080))


ui <- dashboardPage(skin = "red",
dashboardHeader(title = "Miradashboard",
# This drop-down menu offers user and system administration within the application
dropdownMenu(type = "messages",
messageItem(
from = "Sales Dept",
message = "Sales are steady this month."
),
messageItem(
from = "New User",
message = "How do I register?",
icon = icon("question"),
time = "13:45"
),
messageItem(
from = "Support",
message = "The new server is ready.",
icon = icon("life-ring"),
time = "2014-12-01"
)
),
# This is a drop-down menu for checking notifications.
# This should alert users of alerts that have not been merged to a case in the last 15 days.
dropdownMenu(type = "notifications",
notificationItem(
text = "5 new users today",
icon("users")
),
notificationItem(
text = "12 items delivered",
icon("truck"),
status = "success"
),
notificationItem(
text = "Server load at 86%",
icon = icon("exclamation-triangle"),
status = "warning"
)
),
# This is a drop-down menu for checking tasks.
# This drop-down menu will eventually offer suggestions based off of ML Algorithms.
dropdownMenu(type = "tasks", badgeStatus = "success",
taskItem(value = 90, color = "green",
"Documentation"
),
taskItem(value = 17, color = "aqua",
"Project X"
),
taskItem(value = 75, color = "yellow",
"Server deployment"
),
taskItem(value = 80, color = "red",
"Overall project"
)
)



),
dashboardSidebar(
## Sidebar content
dashboardSidebar(
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Widgets", tabName = "widgets", icon = icon("th")),
menuItem("Reports", tabName = "reports", icon = icon("th")),
menuItem("OpsCare Clients", tabName = "OpsCare Clients", icon = icon("bar-chart-o")),
menuItem("ProdCare Clients", tabName = "ProdCare Clients", icon = icon("bar-chart-o")),
menuItem("Alerts", tabName = "Alerts", icon = icon("bar-chart-o")),
menuItem("Change Requests", tabName = "Change Requests", icon = icon("list-alt")),
menuItem("Maintenance Windows", tabName = "Maintenance Windows", icon = icon("list-alt")),
menuItem("Rundeck", tabName = "Rundeck", icon = icon("bars")),
menuItem("Salesforce", tabName = "Salesforce", icon = icon("bars")),
menuItem("Handovers", tabName = "Handovers", icon = icon("bars")),
menuItem("Jump-Host Access", tabName = "Jump-Host Access", icon = icon("bars"))
)
)
),
dashboardBody(
# Boxes need to be put in a row (or column)
fluidRow(
box(plotOutput("plot1", height = 250)),
box(plotOutput("plot2", height = 250)),
box(plotOutput("plot3", height = 250)),
#box(plotOutput("plot4", height = 250)),
#box(dataTableOutput("DT1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
)
)

server <- function(input, output)
set.seed(122)
histdata <- rnorm(500)

# List Server Output whereby plot[1-#] is the plot box output in UI above.
# Server Output occurds and is defined by data variables
# histdata[seq_len(input$slider)] defines slider utilization
# hist(data) defines histogram off of "data"te
output$plot1 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot2 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot3 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot4 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot5 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)


shinyApp(ui, server)


As you can see in the attached a picture, the page is being cut off in a Web Browser. My eventual goal would be to extend it to the full screen as I am trying to make this available and accessible for internal users. If anyone has any suggestions in terms of how to extend the dashboard page to full size that would be nice.



In terms of trying to solve it on my own I have looked into the following aspects to extend it to full screen.



  1. I looked at shiny.js but this does not seem to be a standard repoistory or installation through CRAN

  2. I looked at the fillPage functionality, but this makes it HTML and the above code is not in HTML format

  3. I have looked at invoking the Fill page functionality, but it has not done so within the full page view within a web-browser. The invoked command was placed before ad after the ui <- dashboardPage definition within the ui.R

Screenshot showing UI being cut halfway down the window










share|improve this question
























  • I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

    – divibisan
    Mar 7 at 18:26











  • Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

    – R. Barrett
    Mar 7 at 18:49












  • No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

    – divibisan
    Mar 7 at 18:56











  • Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

    – ismirsehregal
    Mar 7 at 23:13















1















I have an R Shiny app that I'm making using shinydashboard, but I'm having a problem getting the UI to fill the browser window.



Here is my ui.R output:



#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#

## app.R ##
library(rsconnect)
library(shinydashboardPlus)
library(shinydashboard)
library(shiny)

#shinyApp(ui = ui, server = server, options = list(height = 1080))


ui <- dashboardPage(skin = "red",
dashboardHeader(title = "Miradashboard",
# This drop-down menu offers user and system administration within the application
dropdownMenu(type = "messages",
messageItem(
from = "Sales Dept",
message = "Sales are steady this month."
),
messageItem(
from = "New User",
message = "How do I register?",
icon = icon("question"),
time = "13:45"
),
messageItem(
from = "Support",
message = "The new server is ready.",
icon = icon("life-ring"),
time = "2014-12-01"
)
),
# This is a drop-down menu for checking notifications.
# This should alert users of alerts that have not been merged to a case in the last 15 days.
dropdownMenu(type = "notifications",
notificationItem(
text = "5 new users today",
icon("users")
),
notificationItem(
text = "12 items delivered",
icon("truck"),
status = "success"
),
notificationItem(
text = "Server load at 86%",
icon = icon("exclamation-triangle"),
status = "warning"
)
),
# This is a drop-down menu for checking tasks.
# This drop-down menu will eventually offer suggestions based off of ML Algorithms.
dropdownMenu(type = "tasks", badgeStatus = "success",
taskItem(value = 90, color = "green",
"Documentation"
),
taskItem(value = 17, color = "aqua",
"Project X"
),
taskItem(value = 75, color = "yellow",
"Server deployment"
),
taskItem(value = 80, color = "red",
"Overall project"
)
)



),
dashboardSidebar(
## Sidebar content
dashboardSidebar(
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Widgets", tabName = "widgets", icon = icon("th")),
menuItem("Reports", tabName = "reports", icon = icon("th")),
menuItem("OpsCare Clients", tabName = "OpsCare Clients", icon = icon("bar-chart-o")),
menuItem("ProdCare Clients", tabName = "ProdCare Clients", icon = icon("bar-chart-o")),
menuItem("Alerts", tabName = "Alerts", icon = icon("bar-chart-o")),
menuItem("Change Requests", tabName = "Change Requests", icon = icon("list-alt")),
menuItem("Maintenance Windows", tabName = "Maintenance Windows", icon = icon("list-alt")),
menuItem("Rundeck", tabName = "Rundeck", icon = icon("bars")),
menuItem("Salesforce", tabName = "Salesforce", icon = icon("bars")),
menuItem("Handovers", tabName = "Handovers", icon = icon("bars")),
menuItem("Jump-Host Access", tabName = "Jump-Host Access", icon = icon("bars"))
)
)
),
dashboardBody(
# Boxes need to be put in a row (or column)
fluidRow(
box(plotOutput("plot1", height = 250)),
box(plotOutput("plot2", height = 250)),
box(plotOutput("plot3", height = 250)),
#box(plotOutput("plot4", height = 250)),
#box(dataTableOutput("DT1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
)
)

server <- function(input, output)
set.seed(122)
histdata <- rnorm(500)

# List Server Output whereby plot[1-#] is the plot box output in UI above.
# Server Output occurds and is defined by data variables
# histdata[seq_len(input$slider)] defines slider utilization
# hist(data) defines histogram off of "data"te
output$plot1 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot2 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot3 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot4 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot5 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)


shinyApp(ui, server)


As you can see in the attached a picture, the page is being cut off in a Web Browser. My eventual goal would be to extend it to the full screen as I am trying to make this available and accessible for internal users. If anyone has any suggestions in terms of how to extend the dashboard page to full size that would be nice.



In terms of trying to solve it on my own I have looked into the following aspects to extend it to full screen.



  1. I looked at shiny.js but this does not seem to be a standard repoistory or installation through CRAN

  2. I looked at the fillPage functionality, but this makes it HTML and the above code is not in HTML format

  3. I have looked at invoking the Fill page functionality, but it has not done so within the full page view within a web-browser. The invoked command was placed before ad after the ui <- dashboardPage definition within the ui.R

Screenshot showing UI being cut halfway down the window










share|improve this question
























  • I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

    – divibisan
    Mar 7 at 18:26











  • Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

    – R. Barrett
    Mar 7 at 18:49












  • No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

    – divibisan
    Mar 7 at 18:56











  • Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

    – ismirsehregal
    Mar 7 at 23:13













1












1








1








I have an R Shiny app that I'm making using shinydashboard, but I'm having a problem getting the UI to fill the browser window.



Here is my ui.R output:



#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#

## app.R ##
library(rsconnect)
library(shinydashboardPlus)
library(shinydashboard)
library(shiny)

#shinyApp(ui = ui, server = server, options = list(height = 1080))


ui <- dashboardPage(skin = "red",
dashboardHeader(title = "Miradashboard",
# This drop-down menu offers user and system administration within the application
dropdownMenu(type = "messages",
messageItem(
from = "Sales Dept",
message = "Sales are steady this month."
),
messageItem(
from = "New User",
message = "How do I register?",
icon = icon("question"),
time = "13:45"
),
messageItem(
from = "Support",
message = "The new server is ready.",
icon = icon("life-ring"),
time = "2014-12-01"
)
),
# This is a drop-down menu for checking notifications.
# This should alert users of alerts that have not been merged to a case in the last 15 days.
dropdownMenu(type = "notifications",
notificationItem(
text = "5 new users today",
icon("users")
),
notificationItem(
text = "12 items delivered",
icon("truck"),
status = "success"
),
notificationItem(
text = "Server load at 86%",
icon = icon("exclamation-triangle"),
status = "warning"
)
),
# This is a drop-down menu for checking tasks.
# This drop-down menu will eventually offer suggestions based off of ML Algorithms.
dropdownMenu(type = "tasks", badgeStatus = "success",
taskItem(value = 90, color = "green",
"Documentation"
),
taskItem(value = 17, color = "aqua",
"Project X"
),
taskItem(value = 75, color = "yellow",
"Server deployment"
),
taskItem(value = 80, color = "red",
"Overall project"
)
)



),
dashboardSidebar(
## Sidebar content
dashboardSidebar(
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Widgets", tabName = "widgets", icon = icon("th")),
menuItem("Reports", tabName = "reports", icon = icon("th")),
menuItem("OpsCare Clients", tabName = "OpsCare Clients", icon = icon("bar-chart-o")),
menuItem("ProdCare Clients", tabName = "ProdCare Clients", icon = icon("bar-chart-o")),
menuItem("Alerts", tabName = "Alerts", icon = icon("bar-chart-o")),
menuItem("Change Requests", tabName = "Change Requests", icon = icon("list-alt")),
menuItem("Maintenance Windows", tabName = "Maintenance Windows", icon = icon("list-alt")),
menuItem("Rundeck", tabName = "Rundeck", icon = icon("bars")),
menuItem("Salesforce", tabName = "Salesforce", icon = icon("bars")),
menuItem("Handovers", tabName = "Handovers", icon = icon("bars")),
menuItem("Jump-Host Access", tabName = "Jump-Host Access", icon = icon("bars"))
)
)
),
dashboardBody(
# Boxes need to be put in a row (or column)
fluidRow(
box(plotOutput("plot1", height = 250)),
box(plotOutput("plot2", height = 250)),
box(plotOutput("plot3", height = 250)),
#box(plotOutput("plot4", height = 250)),
#box(dataTableOutput("DT1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
)
)

server <- function(input, output)
set.seed(122)
histdata <- rnorm(500)

# List Server Output whereby plot[1-#] is the plot box output in UI above.
# Server Output occurds and is defined by data variables
# histdata[seq_len(input$slider)] defines slider utilization
# hist(data) defines histogram off of "data"te
output$plot1 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot2 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot3 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot4 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot5 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)


shinyApp(ui, server)


As you can see in the attached a picture, the page is being cut off in a Web Browser. My eventual goal would be to extend it to the full screen as I am trying to make this available and accessible for internal users. If anyone has any suggestions in terms of how to extend the dashboard page to full size that would be nice.



In terms of trying to solve it on my own I have looked into the following aspects to extend it to full screen.



  1. I looked at shiny.js but this does not seem to be a standard repoistory or installation through CRAN

  2. I looked at the fillPage functionality, but this makes it HTML and the above code is not in HTML format

  3. I have looked at invoking the Fill page functionality, but it has not done so within the full page view within a web-browser. The invoked command was placed before ad after the ui <- dashboardPage definition within the ui.R

Screenshot showing UI being cut halfway down the window










share|improve this question
















I have an R Shiny app that I'm making using shinydashboard, but I'm having a problem getting the UI to fill the browser window.



Here is my ui.R output:



#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#

## app.R ##
library(rsconnect)
library(shinydashboardPlus)
library(shinydashboard)
library(shiny)

#shinyApp(ui = ui, server = server, options = list(height = 1080))


ui <- dashboardPage(skin = "red",
dashboardHeader(title = "Miradashboard",
# This drop-down menu offers user and system administration within the application
dropdownMenu(type = "messages",
messageItem(
from = "Sales Dept",
message = "Sales are steady this month."
),
messageItem(
from = "New User",
message = "How do I register?",
icon = icon("question"),
time = "13:45"
),
messageItem(
from = "Support",
message = "The new server is ready.",
icon = icon("life-ring"),
time = "2014-12-01"
)
),
# This is a drop-down menu for checking notifications.
# This should alert users of alerts that have not been merged to a case in the last 15 days.
dropdownMenu(type = "notifications",
notificationItem(
text = "5 new users today",
icon("users")
),
notificationItem(
text = "12 items delivered",
icon("truck"),
status = "success"
),
notificationItem(
text = "Server load at 86%",
icon = icon("exclamation-triangle"),
status = "warning"
)
),
# This is a drop-down menu for checking tasks.
# This drop-down menu will eventually offer suggestions based off of ML Algorithms.
dropdownMenu(type = "tasks", badgeStatus = "success",
taskItem(value = 90, color = "green",
"Documentation"
),
taskItem(value = 17, color = "aqua",
"Project X"
),
taskItem(value = 75, color = "yellow",
"Server deployment"
),
taskItem(value = 80, color = "red",
"Overall project"
)
)



),
dashboardSidebar(
## Sidebar content
dashboardSidebar(
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Widgets", tabName = "widgets", icon = icon("th")),
menuItem("Reports", tabName = "reports", icon = icon("th")),
menuItem("OpsCare Clients", tabName = "OpsCare Clients", icon = icon("bar-chart-o")),
menuItem("ProdCare Clients", tabName = "ProdCare Clients", icon = icon("bar-chart-o")),
menuItem("Alerts", tabName = "Alerts", icon = icon("bar-chart-o")),
menuItem("Change Requests", tabName = "Change Requests", icon = icon("list-alt")),
menuItem("Maintenance Windows", tabName = "Maintenance Windows", icon = icon("list-alt")),
menuItem("Rundeck", tabName = "Rundeck", icon = icon("bars")),
menuItem("Salesforce", tabName = "Salesforce", icon = icon("bars")),
menuItem("Handovers", tabName = "Handovers", icon = icon("bars")),
menuItem("Jump-Host Access", tabName = "Jump-Host Access", icon = icon("bars"))
)
)
),
dashboardBody(
# Boxes need to be put in a row (or column)
fluidRow(
box(plotOutput("plot1", height = 250)),
box(plotOutput("plot2", height = 250)),
box(plotOutput("plot3", height = 250)),
#box(plotOutput("plot4", height = 250)),
#box(dataTableOutput("DT1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
)
)

server <- function(input, output)
set.seed(122)
histdata <- rnorm(500)

# List Server Output whereby plot[1-#] is the plot box output in UI above.
# Server Output occurds and is defined by data variables
# histdata[seq_len(input$slider)] defines slider utilization
# hist(data) defines histogram off of "data"te
output$plot1 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot2 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot3 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot4 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)
output$plot5 <- renderPlot(
data <- histdata[seq_len(input$slider)]
hist(data)
)


shinyApp(ui, server)


As you can see in the attached a picture, the page is being cut off in a Web Browser. My eventual goal would be to extend it to the full screen as I am trying to make this available and accessible for internal users. If anyone has any suggestions in terms of how to extend the dashboard page to full size that would be nice.



In terms of trying to solve it on my own I have looked into the following aspects to extend it to full screen.



  1. I looked at shiny.js but this does not seem to be a standard repoistory or installation through CRAN

  2. I looked at the fillPage functionality, but this makes it HTML and the above code is not in HTML format

  3. I have looked at invoking the Fill page functionality, but it has not done so within the full page view within a web-browser. The invoked command was placed before ad after the ui <- dashboardPage definition within the ui.R

Screenshot showing UI being cut halfway down the window







r shiny shinydashboard






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 18:25









divibisan

4,89681833




4,89681833










asked Mar 7 at 18:17









R. BarrettR. Barrett

114




114












  • I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

    – divibisan
    Mar 7 at 18:26











  • Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

    – R. Barrett
    Mar 7 at 18:49












  • No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

    – divibisan
    Mar 7 at 18:56











  • Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

    – ismirsehregal
    Mar 7 at 23:13

















  • I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

    – divibisan
    Mar 7 at 18:26











  • Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

    – R. Barrett
    Mar 7 at 18:49












  • No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

    – divibisan
    Mar 7 at 18:56











  • Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

    – ismirsehregal
    Mar 7 at 23:13
















I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

– divibisan
Mar 7 at 18:26





I've added the picture for you, but you should know that you can edit your question by clicking the edit button below the tag list. To make it easy to read, changes or clarifications should be done by editing the body of the question, not by posting things in the comments.

– divibisan
Mar 7 at 18:26













Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

– R. Barrett
Mar 7 at 18:49






Thanks @divibisan I am pretty new to working inside of this community so I am still trying to learn the ins and outs :D

– R. Barrett
Mar 7 at 18:49














No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

– divibisan
Mar 7 at 18:56





No worries! I assume you've tried looking other browsers outside of the RStudio browser (which often does weird things)? Also, can you scroll the cut off window to see all the content?

– divibisan
Mar 7 at 18:56













Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

– ismirsehregal
Mar 7 at 23:13





Have you tried running it in an external browser (not in the RStudio viewer pane)? On my system the full page is displayed properly.

– ismirsehregal
Mar 7 at 23:13












1 Answer
1






active

oldest

votes


















0














I run your code and it's displayed fullscreen. Here the app on my shinyapp.io account.



Maybe you'll have to check the application version. Here's the packages versions I have. I'm on R version 3.5.2 (2018-12-20) and RStudio 1.1.463.



R version 3.5.2 (2018-12-20)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

other attached packages:
[1] shinydashboard_0.7.1 shinydashboardPlus_0.6.0 rsconnect_0.8.12
[4] shiny_1.2.0 forcats_0.3.0 stringr_1.3.1
[7] dplyr_0.7.5 purrr_0.2.4 readr_1.1.1
[10] tidyr_0.8.1 tibble_1.4.2 ggplot2_3.0.0
[13] tidyverse_1.2.1

loaded via a namespace (and not attached):
[1] tidyselect_0.2.4 reshape2_1.4.3 haven_1.1.1 lattice_0.20-38
[5] colorspace_1.3-2 htmltools_0.3.6 yaml_2.2.0 utf8_1.1.4
[9] rlang_0.2.0 pillar_1.2.3 later_0.7.5 foreign_0.8-71
[13] glue_1.3.0 withr_2.1.2 modelr_0.1.2 readxl_1.1.0
[17] bindrcpp_0.2.2 bindr_0.1.1 plyr_1.8.4 munsell_0.4.3
[21] gtable_0.2.0 cellranger_1.1.0 rvest_0.3.2 psych_1.8.4
[25] httpuv_1.4.5.1 parallel_3.5.2 broom_0.4.4 Rcpp_1.0.0
[29] xtable_1.8-2 openssl_1.0.1 promises_1.0.1 scales_0.5.0
[33] jsonlite_1.6 mime_0.5 mnormt_1.5-5 hms_0.4.2
[37] digest_0.6.18 stringi_1.1.7 grid_3.5.2 cli_1.0.0
[41] tools_3.5.2 magrittr_1.5 lazyeval_0.2.1 crayon_1.3.4
[45] pkgconfig_2.0.1 xml2_1.2.0 lubridate_1.7.4 assertthat_0.2.0
[49] httr_1.3.1 rstudioapi_0.7 R6_2.2.2 nlme_3.1-137
[53] compiler_3.5.2


I've also tried "Run in Window" in RStudio and it worked fullscreen as well.



enter image description here






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050387%2fhow-can-i-make-my-r-shiny-dashboard-fill-the-entire-page%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I run your code and it's displayed fullscreen. Here the app on my shinyapp.io account.



    Maybe you'll have to check the application version. Here's the packages versions I have. I'm on R version 3.5.2 (2018-12-20) and RStudio 1.1.463.



    R version 3.5.2 (2018-12-20)
    Platform: x86_64-w64-mingw32/x64 (64-bit)
    Running under: Windows >= 8 x64 (build 9200)

    other attached packages:
    [1] shinydashboard_0.7.1 shinydashboardPlus_0.6.0 rsconnect_0.8.12
    [4] shiny_1.2.0 forcats_0.3.0 stringr_1.3.1
    [7] dplyr_0.7.5 purrr_0.2.4 readr_1.1.1
    [10] tidyr_0.8.1 tibble_1.4.2 ggplot2_3.0.0
    [13] tidyverse_1.2.1

    loaded via a namespace (and not attached):
    [1] tidyselect_0.2.4 reshape2_1.4.3 haven_1.1.1 lattice_0.20-38
    [5] colorspace_1.3-2 htmltools_0.3.6 yaml_2.2.0 utf8_1.1.4
    [9] rlang_0.2.0 pillar_1.2.3 later_0.7.5 foreign_0.8-71
    [13] glue_1.3.0 withr_2.1.2 modelr_0.1.2 readxl_1.1.0
    [17] bindrcpp_0.2.2 bindr_0.1.1 plyr_1.8.4 munsell_0.4.3
    [21] gtable_0.2.0 cellranger_1.1.0 rvest_0.3.2 psych_1.8.4
    [25] httpuv_1.4.5.1 parallel_3.5.2 broom_0.4.4 Rcpp_1.0.0
    [29] xtable_1.8-2 openssl_1.0.1 promises_1.0.1 scales_0.5.0
    [33] jsonlite_1.6 mime_0.5 mnormt_1.5-5 hms_0.4.2
    [37] digest_0.6.18 stringi_1.1.7 grid_3.5.2 cli_1.0.0
    [41] tools_3.5.2 magrittr_1.5 lazyeval_0.2.1 crayon_1.3.4
    [45] pkgconfig_2.0.1 xml2_1.2.0 lubridate_1.7.4 assertthat_0.2.0
    [49] httr_1.3.1 rstudioapi_0.7 R6_2.2.2 nlme_3.1-137
    [53] compiler_3.5.2


    I've also tried "Run in Window" in RStudio and it worked fullscreen as well.



    enter image description here






    share|improve this answer



























      0














      I run your code and it's displayed fullscreen. Here the app on my shinyapp.io account.



      Maybe you'll have to check the application version. Here's the packages versions I have. I'm on R version 3.5.2 (2018-12-20) and RStudio 1.1.463.



      R version 3.5.2 (2018-12-20)
      Platform: x86_64-w64-mingw32/x64 (64-bit)
      Running under: Windows >= 8 x64 (build 9200)

      other attached packages:
      [1] shinydashboard_0.7.1 shinydashboardPlus_0.6.0 rsconnect_0.8.12
      [4] shiny_1.2.0 forcats_0.3.0 stringr_1.3.1
      [7] dplyr_0.7.5 purrr_0.2.4 readr_1.1.1
      [10] tidyr_0.8.1 tibble_1.4.2 ggplot2_3.0.0
      [13] tidyverse_1.2.1

      loaded via a namespace (and not attached):
      [1] tidyselect_0.2.4 reshape2_1.4.3 haven_1.1.1 lattice_0.20-38
      [5] colorspace_1.3-2 htmltools_0.3.6 yaml_2.2.0 utf8_1.1.4
      [9] rlang_0.2.0 pillar_1.2.3 later_0.7.5 foreign_0.8-71
      [13] glue_1.3.0 withr_2.1.2 modelr_0.1.2 readxl_1.1.0
      [17] bindrcpp_0.2.2 bindr_0.1.1 plyr_1.8.4 munsell_0.4.3
      [21] gtable_0.2.0 cellranger_1.1.0 rvest_0.3.2 psych_1.8.4
      [25] httpuv_1.4.5.1 parallel_3.5.2 broom_0.4.4 Rcpp_1.0.0
      [29] xtable_1.8-2 openssl_1.0.1 promises_1.0.1 scales_0.5.0
      [33] jsonlite_1.6 mime_0.5 mnormt_1.5-5 hms_0.4.2
      [37] digest_0.6.18 stringi_1.1.7 grid_3.5.2 cli_1.0.0
      [41] tools_3.5.2 magrittr_1.5 lazyeval_0.2.1 crayon_1.3.4
      [45] pkgconfig_2.0.1 xml2_1.2.0 lubridate_1.7.4 assertthat_0.2.0
      [49] httr_1.3.1 rstudioapi_0.7 R6_2.2.2 nlme_3.1-137
      [53] compiler_3.5.2


      I've also tried "Run in Window" in RStudio and it worked fullscreen as well.



      enter image description here






      share|improve this answer

























        0












        0








        0







        I run your code and it's displayed fullscreen. Here the app on my shinyapp.io account.



        Maybe you'll have to check the application version. Here's the packages versions I have. I'm on R version 3.5.2 (2018-12-20) and RStudio 1.1.463.



        R version 3.5.2 (2018-12-20)
        Platform: x86_64-w64-mingw32/x64 (64-bit)
        Running under: Windows >= 8 x64 (build 9200)

        other attached packages:
        [1] shinydashboard_0.7.1 shinydashboardPlus_0.6.0 rsconnect_0.8.12
        [4] shiny_1.2.0 forcats_0.3.0 stringr_1.3.1
        [7] dplyr_0.7.5 purrr_0.2.4 readr_1.1.1
        [10] tidyr_0.8.1 tibble_1.4.2 ggplot2_3.0.0
        [13] tidyverse_1.2.1

        loaded via a namespace (and not attached):
        [1] tidyselect_0.2.4 reshape2_1.4.3 haven_1.1.1 lattice_0.20-38
        [5] colorspace_1.3-2 htmltools_0.3.6 yaml_2.2.0 utf8_1.1.4
        [9] rlang_0.2.0 pillar_1.2.3 later_0.7.5 foreign_0.8-71
        [13] glue_1.3.0 withr_2.1.2 modelr_0.1.2 readxl_1.1.0
        [17] bindrcpp_0.2.2 bindr_0.1.1 plyr_1.8.4 munsell_0.4.3
        [21] gtable_0.2.0 cellranger_1.1.0 rvest_0.3.2 psych_1.8.4
        [25] httpuv_1.4.5.1 parallel_3.5.2 broom_0.4.4 Rcpp_1.0.0
        [29] xtable_1.8-2 openssl_1.0.1 promises_1.0.1 scales_0.5.0
        [33] jsonlite_1.6 mime_0.5 mnormt_1.5-5 hms_0.4.2
        [37] digest_0.6.18 stringi_1.1.7 grid_3.5.2 cli_1.0.0
        [41] tools_3.5.2 magrittr_1.5 lazyeval_0.2.1 crayon_1.3.4
        [45] pkgconfig_2.0.1 xml2_1.2.0 lubridate_1.7.4 assertthat_0.2.0
        [49] httr_1.3.1 rstudioapi_0.7 R6_2.2.2 nlme_3.1-137
        [53] compiler_3.5.2


        I've also tried "Run in Window" in RStudio and it worked fullscreen as well.



        enter image description here






        share|improve this answer













        I run your code and it's displayed fullscreen. Here the app on my shinyapp.io account.



        Maybe you'll have to check the application version. Here's the packages versions I have. I'm on R version 3.5.2 (2018-12-20) and RStudio 1.1.463.



        R version 3.5.2 (2018-12-20)
        Platform: x86_64-w64-mingw32/x64 (64-bit)
        Running under: Windows >= 8 x64 (build 9200)

        other attached packages:
        [1] shinydashboard_0.7.1 shinydashboardPlus_0.6.0 rsconnect_0.8.12
        [4] shiny_1.2.0 forcats_0.3.0 stringr_1.3.1
        [7] dplyr_0.7.5 purrr_0.2.4 readr_1.1.1
        [10] tidyr_0.8.1 tibble_1.4.2 ggplot2_3.0.0
        [13] tidyverse_1.2.1

        loaded via a namespace (and not attached):
        [1] tidyselect_0.2.4 reshape2_1.4.3 haven_1.1.1 lattice_0.20-38
        [5] colorspace_1.3-2 htmltools_0.3.6 yaml_2.2.0 utf8_1.1.4
        [9] rlang_0.2.0 pillar_1.2.3 later_0.7.5 foreign_0.8-71
        [13] glue_1.3.0 withr_2.1.2 modelr_0.1.2 readxl_1.1.0
        [17] bindrcpp_0.2.2 bindr_0.1.1 plyr_1.8.4 munsell_0.4.3
        [21] gtable_0.2.0 cellranger_1.1.0 rvest_0.3.2 psych_1.8.4
        [25] httpuv_1.4.5.1 parallel_3.5.2 broom_0.4.4 Rcpp_1.0.0
        [29] xtable_1.8-2 openssl_1.0.1 promises_1.0.1 scales_0.5.0
        [33] jsonlite_1.6 mime_0.5 mnormt_1.5-5 hms_0.4.2
        [37] digest_0.6.18 stringi_1.1.7 grid_3.5.2 cli_1.0.0
        [41] tools_3.5.2 magrittr_1.5 lazyeval_0.2.1 crayon_1.3.4
        [45] pkgconfig_2.0.1 xml2_1.2.0 lubridate_1.7.4 assertthat_0.2.0
        [49] httr_1.3.1 rstudioapi_0.7 R6_2.2.2 nlme_3.1-137
        [53] compiler_3.5.2


        I've also tried "Run in Window" in RStudio and it worked fullscreen as well.



        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 10 at 1:04









        alessioalessio

        1446




        1446





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050387%2fhow-can-i-make-my-r-shiny-dashboard-fill-the-entire-page%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme