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
7
votes
1 answer

Including jQuery in Shiny Dashboard

I work with Shiny Dashboard. I want to include jQuery in the App. However, when I add these lines tags$script(src = "https://code.jquery.com/jquery-3.1.1.min.js") the app breakes completely. The layout gets messed up, buttons are not clickable…
four-eyes
  • 10,740
  • 29
  • 111
  • 220
7
votes
1 answer

How to use sliderInput to to input more than 2 values in Rshiny

Traditionally, a sliderInput function is sliderInput(inputId, label, min, max, value, step = NULL, round = FALSE, format = NULL, locale = NULL, ticks = TRUE, animate = FALSE, width = NULL, sep = ",", pre = NULL, post = NULL, timeFormat = NULL,…
Bratt Swan
  • 1,068
  • 3
  • 16
  • 28
7
votes
1 answer

Add dynamic tabs in shiny dashboard using conditional panel

I would like to have dynamic tabs for my shiny app. I tried the below code ## app.R ## library(shiny) library(shinydashboard) ui <- dashboardPage( dashboardHeader(), dashboardSidebar( checkboxGroupInput("Tabs", label…
Agaz Wani
  • 5,514
  • 8
  • 42
  • 62
7
votes
3 answers

Use href infobox as actionbutton

I was building an App with Rshiny. I have a couple of infoBoxand I would like to use the href option to make a pop-up when clicking on the infoBox. I use shinyBS for the popup options. here is what i tried : valueBox(value=entry_01, icon =…
Christophe D.
  • 1,089
  • 11
  • 21
7
votes
2 answers

shinydashboard Sidebar Menu Overflow

Is there any way to fit some sort of text on shinydashboard with word wrap? The default behaviour seems to be for it to spill over into the body area. I would like to avoid modifying css directly however if there is a workaround which involves…
TheComeOnMan
  • 12,535
  • 8
  • 39
  • 54
7
votes
1 answer

dynamic body in shiny dashboard

I am using R/shinydasboard to create a web app that I am putting behind a login screen. I'm having trouble with getting the main body to render based on the sidebar menu tabs. I've tried to ensure one of the tab items has selected = TRUE still to no…
Dan
  • 2,625
  • 5
  • 27
  • 42
7
votes
1 answer

Switching between menuSubItems in shinyDashboard

I'm trying to set up a shiny app using shinydashboard, and for the most part, having good luck. However, I'm running into a quirk with sidebar behavior that I think is avoidable, but haven't found how yet. Below is a small example that reproduces…
Sam
  • 1,353
  • 18
  • 22
7
votes
2 answers

Can shinydashboard use Tabpanels and have a nav bar?

I am currently using shinydashboard but I would like to have different sidbar menues associated with content in the main body. Is this possible with shinydashboard? For example: I would like to have something like…
user3022875
  • 8,598
  • 26
  • 103
  • 167
7
votes
1 answer

Change font-family with CSS in dashboardBody shinydashboard

How is it possible to change the font family in shiny dashboard for a box in tabItem? I have already included some css coding in the dashboardBody changing the color and font-family, but this is linked only to the main header: body <-…
Daniel_D
  • 698
  • 1
  • 7
  • 13
7
votes
1 answer

Use selectInput to set box title?

I want to use selectInput to set the title on a box. For example, I would like the default title to be: Name 2 settings Right now, I'm able to get the title to be [1] "Name 2 settings". Is there a way to remove the [1] and the quotes? Thanks! This…
Ignacio
  • 7,646
  • 16
  • 60
  • 113
6
votes
1 answer

on bslib package and shinydashboard

This a question on bslib, by the way, a great package. I'd like to know if it is primarily intended for shiny and flexdashborad or it will be also operative with shinydashboard. Thanks!
Sebastian
  • 95
  • 6
6
votes
1 answer

Function dashboardPagePlus() is not compatible with latest shinydashboardPlus version

I use the exact code from here to run the shinydashboardPlus. But when I try to run the app I get: could not find function "dashboardPagePlus". I tried the CRAN and the github version with # for the CRAN…
firmo23
  • 7,490
  • 2
  • 38
  • 114
6
votes
1 answer

How to have another row in my Flexdashboard if I'm using {.tabset}? R

Here is how my dashboard template looks. I have a {.tabset} to show two different tables for Dec 2020 & Jan 2020. But the table is not as long as the area generated and really only reaches half of it. My desired ouutput would be something like…
RL_Pug
  • 697
  • 7
  • 30
6
votes
1 answer

Add space above one of sidebar menu item

I want to add space above one of sidebar menu item. For example 'Widgets' in the example below should be shown at the bottom of the page under sidebar (mean there should be space on top of the menu). I tried doing this with tags$div(style =…
john
  • 1,026
  • 8
  • 19
6
votes
2 answers

How to select all the Input at once from selectInput function in R

In the shiny App which I am creating I have a set of Drop down list boxes which are interconnected with each other. That is the input of One drop down box decides the set of Input for others. For the drop down boxes i use selectInput() function to…
David Chris
  • 255
  • 4
  • 16