Questions tagged [flexdashboard]

An Easy interactive dashboards for R.

Flexdashboard is a package developed by the RStudio team that enables individuals to easily create flexible, attractive, interactive dashboards with R. Authoring and customization of dashboards is done using R Markdown and can optionally include Shiny components for additional interactivity.

Reference and documentation: http://rmarkdown.rstudio.com/flexdashboard/

832 questions
6
votes
1 answer

Multipage Flexdashboard with Shiny runtime -how to detect page change within shiny module observer

I am wondering if there is a way to detect a page change using an observer in flexdashboard with a shiny runtime environment? I would like to observe a page change then force evaluation of another observer, or, if easier, force evaluation a reactive…
nate
  • 1,172
  • 1
  • 11
  • 26
6
votes
2 answers

Flexdashboard/plotly interaction results in odd scroll bar behavior

I have a bizarre and very frustrating problem. When I build plotly graphs within storyboards (from the flexdashboard package), I get a very annoying and totally unnecessary scroll bar in my legend. When someone tries to click one of the dots on or…
Adrian Martin
  • 780
  • 7
  • 21
6
votes
1 answer

shiny fitting more than three value box in a row

I am developing a test ShinyApp with 7 or 8 valueBox. Everything is working fine except, shiny is adding three valueBox per row. Right now I have three rows on top that is displaying these 7 valueBox. I tried changing the width parameter, and its…
Sundown Brownbear
  • 491
  • 1
  • 5
  • 15
6
votes
1 answer

crosstalk's filter_select doesn't filter the graph

I'm trying to use the crosstalk package, specifically the filter_select() function, to make an interactive graph with a selection box that filters to speci. For example, I'd expect the below code (run in e.g. a Flex dashboard) to produce a graph…
David Robinson
  • 77,383
  • 16
  • 167
  • 187
6
votes
1 answer

Flexdashboards and Leaflet and marker click with Highcharts

I am attempting to create a flexdashboard that uses an event (map_marker_click) in Leaflet to show a highcharts column chart in another chart on the same page. I have taken from other examples and cannot find quite what I am looking for in the…
Lebeauski
  • 340
  • 1
  • 4
  • 17
5
votes
0 answers

How to add flexdashboard style valueBox in Quarto?

I have a Quarto qmd file with the below code to display a valueBox. --- title: "My Dashboard" output: flexdashboard::flex_dashboard: orientation: rows --- ```{r setup, include=FALSE} library(dygraphs) library(flexdashboard) ``` ###…
apprunner2186
  • 217
  • 1
  • 6
5
votes
1 answer

On flexdashboard, leafgl points are invisible until we pan or zoom

Upon load, WebGL points are invisible until we pan or zoom. How can I make them visible immediately on load? Upon load no points appear: After pan or zoom points appear: The code below can be pasted into an Rmd and knit: --- title:…
Rich Pauloo
  • 7,734
  • 4
  • 37
  • 69
5
votes
1 answer

download button in flexdashboard navbar

I have created a download button in the .navbar-right . I would like to link that button to the downloadHandler() function that will generate a .pdf report based on the "report.Rmd" which contains Chart 1 of the dashboard. Does anyone know how to…
laBouz
  • 205
  • 1
  • 6
5
votes
1 answer

Flexdashboard Wide Table Scrolls Into Side Bar

I have a wide table in a flexdashboard that displays via renderTable. There is a scroll bar in the browser but if you scroll the table to the right it goes into the sidebar. How can I make it go behind the sidebar invisibly or keep it contained in…
Tyler Rinker
  • 108,132
  • 65
  • 322
  • 519
5
votes
3 answers

R Flexdashboard multiple plots on single tab

I'm trying to put multiple dygraph plots on a single tab of a flexdashboard. I've tried a bunch of different options from here and from here My RMD file looks like this: --- title: "Project Dashboard" output: …
DarwinsBeard
  • 527
  • 4
  • 16
5
votes
2 answers

Modify Flexdashboard CSS in R

I am using the flexdashboard Package with Rmarkdown and would like to modify the dimensions of headers, location of borders, colors, etc. that result in the webpage created by Rstudio. There are many CSS files associated with flex dashboard and…
Ben
  • 1,113
  • 10
  • 26
5
votes
1 answer

R markdown - flexdashboard - grid layout & scroll & tabset

Im trying to figure out how to combine a grid layout, rowwise tabset and the ability to scroll in markdown / flexdashboard. What I would like to achieve is that Tab 3 should be to the right of Tab 1 & 2 with the ability to scroll down to Tab 4-6…
Pierre
  • 671
  • 8
  • 25
5
votes
1 answer

Flexdashboard containing runtime:shiny saves html output in tmp folder and the html file shows a blank page

I have been searching for this problem for a few hours and I cannot seem to find the right solution. I would appreciate any help regarding how to fix this. I have a flexdashboard in my RStudio Server, and in it, I have one gvisGeoChart that I have…
Nazaniiin
  • 51
  • 4
5
votes
1 answer

How to add URL link to Navigation Bar on Top

I tried finding a solution here and in other forums and couldn't find anything. I'm using flexdashboard to create a website (HTML file). It has several pages, each accessible through the navbar on top. Something…
lc23
  • 83
  • 1
  • 5
5
votes
1 answer

Can't get flexdashboard modal Shiny reactivity to deal with NULL state

First off, here's a minimal reproducible example: Suppose I have the following flexdashboard app example.Rmd: --- title: "Test App" output: flexdashboard::flex_dashboard: theme: ["lumen"] orientation: ["columns"] runtime: shiny --- ```{r…
Ray
  • 3,137
  • 8
  • 32
  • 59