Questions tagged [shinydashboard]

shinydashboard is an R package which provides a framework for creating dashboards using R and shiny.

shinydashboard is an R package which builds on top of the shiny package in order to facilitate the creation of interactive dashboards.

Repositories

Stable Version on Cran

2792 questions
0
votes
0 answers

publishing shiny app with flex dashboard on shinyapps.io in R doesn't work

I made a shiny flex_dashboard markdown report and I want to publish it on shinyapps.io but my account is not added clicking publish button I clicked on Posit Cloud clicking posit cloud put my token putting my token and my accound isn't added my…
entesar
  • 1
  • 1
0
votes
1 answer

Output the name of a menuSubItem

In this App (code below), I would like that the output "Selected Menu Item:" be followed by the name of the tabName of the menuSubItem the user clicked - example: "Selected Menu Item: sub1". Here's the code I unsucessfully…
0
votes
0 answers

How to add background color to valuebox

Here is my UI Code for shiny ui <- navbarPage(title = "Shiny-Box", tabPanel(title = "Daily", tags$head( tags$style( HTML( ".custom-valuebox { …
0
votes
1 answer

Disable click on shiny dashboard sidebar (when specifying ui layout in server function)

SBista provides a very helpful answer on how to disable/enable click on a dashboard sidebar in shiny. However, if you need to specify the ui layout in the server function via a sidebarMenuOutput() command as in the example below, the app fails to…
lrclark
  • 81
  • 8
0
votes
0 answers

How to enter hour and minute with shiny components in python?

I have a shiny based dashboard. I take the dates with "ui.input_date" component from users in shiny. How can i take the hour and minute info with shiny components? When I check the documentation, the only component I could find was…
murcielago
  • 11
  • 4
0
votes
1 answer

ConditionalPanel() in shiny is not working

I have a checkboxGroupInput that should only be shown if a specific radioButton "continent" is selected. I tried to use conditionalPanel, but it doesn't work, it never shows the checkboxes , whichever radio button you choose. This is my code, I…
xSambx02
  • 25
  • 7
0
votes
1 answer

Conditional Panel is not working when to include HTML file converted from Rmd

The following is the simplified R Shiny app code to include a HTML file converted from a R markdown file using rmarkdown library. library(shiny) library(shinydashboard) library(rmarkdown) ui <- dashboardPage( dashboardHeader(title = "Basic…
ikaika
  • 1
  • 2
0
votes
0 answers

Is it possible to use selectInput in boxDropdown?

Is it possible to use selectInput in boxDropdown? Once I try to select an item, the dropdown closes. It seems to close if the user does not click exactly on a button. If I press slightly below a checkbox from checkboxGroupInput it closes, but not if…
qwertzuiop
  • 172
  • 8
0
votes
1 answer

R Shiny increase header height remove dot next to navigation icon

So when I increase the height of the main header in a Shinydashboard app all of a sudden a dot appears...why? And how can I remove it? library(shiny) library(shinydashboard) ui <- dashboardPage( title = "Test", header =…
H. berg
  • 471
  • 1
  • 3
  • 11
0
votes
0 answers

R Shiny padding pin controlbar when dashboardSidebar is disabled

I have a R Shiny dashboard with a higher header (wel title cause the logo is set to height = "55px") ...however the pin of the controlbar is than under the header. How to fix this? This is particulary with disabled…
H. berg
  • 471
  • 1
  • 3
  • 11
0
votes
0 answers

shinydashboard and airquality dataset

I'm trying to create a dashboard for the airquality dataset with brushing capability in shinydashboard, but I keep getting "Error: need finite 'xlim' values". I can't figure out why as I went step by step from my text book. Can anyone advise? …
Rojo
  • 1
0
votes
0 answers

Error in shinyApp(ui,server) and says object 'server' not found

I'm new in R, downloaded the packages. Trying to do this tutorial but always gives error. https://www.youtube.com/watch?v=41jmGq7ALMY shinyApp(ui,server) Error in shinyApp(ui, server) : object 'server' not found shinyApp(ui,server) Error in…
0
votes
0 answers

R shiny DT::datatable callback for collapsing rowgroups not working with semantic.dashboard

I am trying to use a callback in my shiny dashboard to collapse the rows in a datatable. I found that the callback works if I use shinydashboard but not when I semantic.dashboard…
0
votes
1 answer

Is it possible to exclude one value from R Shiny sliderInput?

I have a Shiny sliderInput in my application in which one can choose a year between 2000 and 2022. However, I do not have any data for 2021 which is why I would like to exclude that year and to not have it shown so that the user cannot choose 2021…
Laura -
  • 3
  • 1
0
votes
1 answer

Linking filters in R Shiny

I have a problem creating a simple application in R Shiny. I have several filters and I need the options in the filters to change depending on the selected values at others filters. I borrowed this example (https://stackoverflow.com/a/56206037) and…
314mip
  • 383
  • 1
  • 4
  • 13
1 2 3
99
100