Skip to main content

All Questions

Tagged with
-1 votes
1 answer
48 views

Add text in separate lines in shinydashboard sidebar [duplicate]

Im trying to put text in separate lines in shinydashboard sidebar I cant make it work with <br>: library(shiny) # Creating a Shiny app ui <- fluidPage( titlePanel("Subset Data by Date ...
firmo23's user avatar
  • 8,306
0 votes
0 answers
31 views

Display navbarMenu across complete screen width in Shiny R

I would like to use shiny navbarpage with 4 navbarmenus. these should be displayed horizontally next to each other and be selectable. Only when the screen width across the entire screen is too small ...
Muesgen's user avatar
  • 142
1 vote
1 answer
41 views

How do I create a ShinyDashboard with a row of 4, 8, 4, 8 that will also scale properly if window is narrowed?

I have a 4,8,4,8 ShinyDashboard that you can view here: https://spangle.shinyapps.io/TDEC-O3/ Relevant dashboard layout code in R: dashboardBody( # Boxes need to be put in a row (or column), # ...
Kyle's user avatar
  • 445
0 votes
1 answer
141 views

Synchronize vertical scrolling of two handsontables in shiny

I'd like to synchronize the vertical scroll of two handsontables through the shiny app (using the rhandsontable library). I'm aware that there might be some HTML and CSS code involved, but I'm not ...
Jordi Legorreta's user avatar
3 votes
2 answers
550 views

Position title in the header in shinydashboard

Having this basic shiny app: I would like to position my title in the header like indicated in red in the image below: There are already some solutions Add text on right of shinydashboard header but ...
TarJae's user avatar
  • 78.1k
1 vote
1 answer
75 views

How define Server for Copy/Paste regions as input in R/Shiny?

I have a shiny which can be used to overlap between query regions and a given data table (e.g. DF). I put two options for uploading query data 1) as .bed format and 2) inserting data as copy/paste. ...
star's user avatar
  • 765
0 votes
1 answer
678 views

shinydashboard, logo and title in navbar?

Is there a way in shinydashboard that both the Title and logo appear in the navbar and that there is also a subtitle? a MWE and a picture how I would want it to be library(shiny) library(...
galaxy--'s user avatar
  • 172
0 votes
1 answer
345 views

Shinydashboard, align logo to the right

Is it possible to move the logo in the header completely to the right side? I have attached a pic how I would like it to look like. here is a MWE logo to the right library(shiny) library(...
galaxy--'s user avatar
  • 172
1 vote
1 answer
302 views

Is it possible to allow users to do custom html/css as inputs buttons to alter text similar to common text editors (like word/excel) in a R Shiny app?

So I have a simple shiny app that takes text as an input and outputs it. But my goal is to make it easier for my users to be able to customize the font and formatting of this text in an easy to use ...
RL_Pug's user avatar
  • 827
0 votes
1 answer
64 views

How to put a logo here? Shiny apps R

Hi, I need to put a logo in this red place, I already tried: cabecalho <- dashboardHeader(title = "Test", titleWidth = '300px') cabecalho$children[[2]]$children <- tags$a(href='http://...
LUCAS XXXX's user avatar
1 vote
1 answer
511 views

How to change the default "angle-left icon" on the sidebar menu in R Shiny to an "angle-right icon"?

I would like to change the default arrow direction (as in the attached pic), so it will point to the right. this is the current code: sidebarMenu( menuItem("Market data", ...
mailo's user avatar
  • 37
0 votes
1 answer
308 views

Fix the title when scrolling

I would like to fix scrolling according to the title in shinydashboard. I tried some CSS tricks and functions but i don't get the expected result. Here's my apps : library(shiny) library(...
John john's user avatar
  • 445
0 votes
1 answer
829 views

Convert a shiny "tags$" in HTML()

I would like to write this code (that works): tags$li( class = "dropdown", tags$a( height = 40, href = "https://www.google.com.br", title = "Whatsapp&...
neves's user avatar
  • 800
0 votes
1 answer
848 views

Write shiny$HTML(...) without tags$head(...) in Shiny

How can I write this below just using shiny$HTML to the code instead of tags$head(shiny$HTML(...)? Ex: tags$head( HTML("<title> Hell Tattoo Dashboard</title> <link rel='shortcut ...
neves's user avatar
  • 800
0 votes
1 answer
533 views

How to make shiny dashboard app/logo bigger?

I have the following code that makes a simple shiny app. My goal is to make the image/logo bigger and push the sidebar menu down a little bit. library(shinydashboard) library(shiny) ui <- ...
RL_Pug's user avatar
  • 827

15 30 50 per page
1
2 3 4 5
7