Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
-1 votes
1 answer
29 views

How to change the background color of a Datatable header using css?

My question is similar to this question, except that I would like to use a css rule in an external css file.
Edd's user avatar
  • 85
1 vote
1 answer
42 views

How to fit div content to the screen width?

I have this app: library(shiny) ui <- fluidPage( uiOutput("preview") ) server <- function(input, output, session) { deployExeList<-function(){ return( list(...
Lev's user avatar
  • 823
0 votes
1 answer
47 views

How to force shiny apps to take up the whole length on mobile devices?

I created a website with several pages using R markdown.The first page just contains introductory text. The second page consists of four tabs, each for a shiny app (map or table). It all works well on ...
hks's user avatar
  • 137
1 vote
2 answers
108 views

How can I align a logo in the navbar header of an R shiny app created using bslib?

I am trying to add my company's logo to an R shiny app, made using {bslib}. I tried different ways of adding this image to the 'title' argument of 'page_navbar'. While the image gets added, it looks ...
Ramya Roopa's user avatar
1 vote
2 answers
35 views

Why are renderUI() elements ignoring CSS?

I'm building a simple Shiny App, and have a decent understanding (or so I thought) of CSS and how to use it to style different UI elements (background color, size, etc.). The issue I'm having is that ...
ForceLeft415's user avatar
1 vote
1 answer
36 views

str_wrap is ignored when using ggplotly (but not ggplot)

I want to wrap the text of the legend for the following plot, which works with ggplot: library(tidyverse) library(ggtext) library(plotly) df <- data.frame(xx = c(0, 3), yy = c(0, ...
user63230's user avatar
  • 4,492
1 vote
1 answer
40 views

Shiny modules - including module CSS and JS without repeating

I'm wondering what are the ways to include some CSS and possibly Javascript that's needed for a Shiny module to work, without duplicating that code when multiple instances of the module are called? ...
mkranj's user avatar
  • 371
0 votes
0 answers
40 views

Freezing the axis-labels on top of figure in R shiny

I have a renderGirafe that is very long. I want the user to be able to see the x-axis values (which are on top of figure) after scrolling down. Here is a sample code. In this code, I want the user to ...
Majid's user avatar
  • 21
1 vote
1 answer
38 views

How to resize rendered object to match window size in R Shiny?

In running the below MWE R Shiny code the sidebar panel width correctly remains fixed while the main panel expands as the user expands the size of the window. When the user increases the window size, ...
Village.Idyot's user avatar
0 votes
1 answer
22 views

shiny htmlTemplate not linking correctly to css sheet

I want to add a css file reference to my htmlTemplate for a shiny application. My current method, pointing to an external file, is not working. Removing and replacing the class attribute with style ...
D.sen's user avatar
  • 912
0 votes
0 answers
12 views

How add different colors to gvisOrgCharts nodes?

I want to add multiple colors to the nodes of a gvisOrgChart. Ideally I would like to use a column from the source dataframe to indicate the color. Here I have used the packages standard example ...
stomper's user avatar
  • 1,367
1 vote
2 answers
49 views

How to set an overflow of buttons to the next line for small pages?

Using bslib, I want the checkbox buttons here to overflow to the next line when the width of the page is too small. How can this be accomplished? PS: Is this best accomplished using CSS? Here is the ...
JoshuaA's user avatar
  • 62
0 votes
2 answers
85 views

How to click on a button to go to a specific div inside a panel?

I want to click on the button 'Yellow' and go directly to the yellow div of Panel 2. And the same for the others buttons. This is my code: library(shiny) library(bslib) # module curso_one_UI <- ...
Laura's user avatar
  • 561
1 vote
1 answer
44 views

How do I adjust the margin and width of R Shiny sortable bucket list?

I'm trying to write a UI where a user can categorize values by pulling from a bucket list on the left to different bucket lists on the right. To name the categories, there is a textInput on top of ...
Lukas Tilmann's user avatar
0 votes
0 answers
24 views

Footer placement in R shiny argondash

Considering following argonDash app: library(shiny) library(argonDash) library(argonR) library(purrr) n=3 ui <- argonDashPage( title = "argonDash Footer Example", author = "...
Roman's user avatar
  • 17.5k

15 30 50 per page
1
2 3 4 5
102