shinydashboard Questions
5
How do I add text to the right of a dashboard header sidebar icon? It seems that previous similar solutions no longer work under updates to dashboardHeader().
This is what I am trying to do in a b...
Splatter asked 18/7, 2017 at 20:1
4
Solved
I have a couple of questions regarding R shiny Dashboard.
ui.R
library(shinydashboard)
library(shiny)
dashboardPage(
dashboardHeader(title = 'Test Interface'),
dashboardSidebar(width = 600,
h3...
Collectivize asked 6/7, 2015 at 18:47
3
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 h...
Lachus asked 15/9, 2015 at 21:44
3
Solved
I have a Shiny app that uses a couple icons from the Font Awesome library (built-in) in the UI:
icon("bolt")
icon("compass")
How do I change the color of each icon?
Sturdivant asked 2/10, 2017 at 18:35
8
Solved
I am in the process of creating a Shiny dashboard application, where the dashboard body is supposed to show some maps. So far no problem to get the map expand over the entire width of the body, but...
Whelk asked 7/4, 2016 at 7:37
6
Solved
When using shinydashboard I find that some icons seem to work while some don't. In the below example, the battery-full icon doesn't work while the clock-o icon works fine. I'm unable to figure out ...
Bullhorn asked 21/9, 2015 at 1:44
2
Solved
I'm trying to add valueBox to shiny app created in navbarpage layout, I know that valve boxes are part of the shinydashboard package but this app made me wonder how should I achieve this
below is ...
Decor asked 29/12, 2019 at 8:32
2
Solved
I work on a Shiny application that is built on the standard layout (fluidpage(), I cannot change this), and I need to display some reactive KPIs to the user, which color , icon and text depend on t...
Peril asked 16/12, 2017 at 9:27
1
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. Th...
Gurolinick asked 1/12, 2016 at 14:15
1
Solved
Curious if anyone can offer suggestions for making shinydashboard boxes be collapsed if a mobile user is detected and expanded if a desktop user is detected. I've tried directly changing the class ...
Sukkoth asked 17/8, 2022 at 3:17
2
Solved
I have implemented a box on R shiny dashboard page using box() function, it loads the table and represents a column full of population numbers. However the numbers overshoot the table and it looks ...
Spidery asked 4/8, 2017 at 4:59
2
Solved
I am new to shiny as well as stackoverflow and looking for some help with a problem that I am currently stuck at.
I am trying to build a shiny app which collects some inputs from the user and creat...
Beguine asked 20/2, 2018 at 21:16
1
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...
Pegg asked 30/12, 2020 at 16:8
2
Solved
I have a helpText widget in a shinydashboard box in my shiny app.
A helpText outside a shinydashboard::box() can easily be formatted, however, in the box(), new lines as well as other HTML elements...
Supposing asked 11/12, 2020 at 22:32
4
Solved
In web browsers you pass parameters to a website like
www.mysite.com/?parameter=1
I have a shiny app and I would like to use the parameter passed in to the site in calculations as an input. So is...
Nansen asked 30/9, 2015 at 17:25
2
Solved
I have the following which changes the color of the primary status in shinydashboard to the custom blue I have stated.
tags$style(HTML(".box.box-solid.box-primary>.box-header {
color:#FFFFFF;
...
Est asked 10/7, 2017 at 16:6
1
Solved
I have the following code that makes a simple shiny app.
```
library(shinydashboard)
library(shiny)
ui <- dashboardPage(
dashboardHeader(title = tags$img(src='https://cdn.vox-cdn.com/thumbor/Ou...
Tolyl asked 12/1, 2022 at 15:29
1
Solved
Suppose you have a simple shinydashboard which contains links created with menuItem and pages created with tabItems:
library(shiny)
library(shinydashboard)
skin <- Sys.getenv("DASHBOARD_SK...
Mills asked 23/11, 2021 at 12:19
1
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!
Beckwith asked 1/9, 2021 at 14:58
2
Solved
I would like to change background in my shiny dashboard App. I wound in internet function setBackgroundImage (https://rdrr.io/cran/shinyWidgets/man/setBackgroundImage.html). The problem is that I d...
Cannery asked 7/2, 2019 at 7:38
1
Solved
How to require user authentication in R Shiny before users see any part of the app using shinyauthr?
I have a R Shiny app that I want users to authenticate themselves before they see anything, including the main panel and every tab. I know I could use "req(credentials()$user_auth)" befor...
Isolating asked 11/8, 2021 at 20:18
4
I would like to customize the color of the box status of my shiny app.
I find a css way to change the box background color of these box but not to customize the status color, but I do not see the ...
Spoil asked 18/3, 2016 at 9:21
4
Solved
I used shinydashboard to create my app. I would like to hide the sidedar in default on desktop environment (e.g. windows), but not to disable it. On the mobile device, the sidebar is hide in defaul...
Hailstorm asked 3/2, 2016 at 6:33
3
Solved
If you are familiar with the shiny website, you'll notice that when you press the button to collapse the sidebar, it's showing bigger icons (but not completely hiding the sidebar.
Do you know how...
Grammalogue asked 27/12, 2016 at 19:38
4
Solved
(cross post from shiny google groups)
Could some one point me to the tag names that I have to modify the color of a shiny dashboard?
Modified from http://rstudio.github.io/shinydashboard/appearan...
Innumerable asked 29/7, 2015 at 21:17
1 Next >
© 2022 - 2024 — McMap. All rights reserved.