I have produced a series of dashboards using flexdashboard and have found that they work well in Chrome but do not render in IE 11.
I made a very simple dashboard for testing purposes and still all I get in IE is a blank page. If I change the output from flexdashboard to html_document, it renders fine, so the problem appears to be with flexdashboard and not R Markdown.
Here's my simple dashboard:
---
title: "Flexdashboard - Internet Explorer test"
output:
flexdashboard::flex_dashboard
---
```{r setup, include=FALSE}
# Libraries
library(flexdashboard)
library(knitr)
library(ggplot2)
```
Iris
=========================================
Row
-------------------------------------
```{r}
ggplot(data=iris, aes(x=Petal.Length, y=Petal.Width, color=Species)) + geom_point()
```
And this is all I get in IE: flexdashboard IE fail
I have found no other reports of this exact issue, only a similar problem using ggiraph.
I had my coworker try to open the file using IE on her computer and results were the same. I'd really like to get this working because some people in this org are only allowed IE.