I have created a fairly large (multi-page) flexdashboard that includes different htmlwidgets (plotly, highcharts, leaflet, etc).
In order to avoid conflict between rCharts and other htmlwidgets, I included the javascript libraries mannually, excluding jQuery:
<link rel='stylesheet' href=C:/Users/stefanj/Documents/R/win-library/3.3/rCharts/libraries/nvd3/css/nv.d3.css>
<link rel='stylesheet' href=C:/Users/stefanj/Documents/R/win-library/3.3/rCharts/libraries/nvd3/css/rNVD3.css>
<script type='text/javascript' src=C:/Users/stefanj/Documents/R/win-library/3.3/rCharts/libraries/nvd3/js/d3.v3.min.js></script>
<script type='text/javascript' src=C:/Users/stefanj/Documents/R/win-library/3.3/rCharts/libraries/nvd3/js/nv.d3.min-new.js></script>
<script type='text/javascript' src=C:/Users/stefanj/Documents/R/win-library/3.3/rCharts/libraries/nvd3/js/fisheye.js></script>
Also, I set the rChart chunk to:
```{r, echo=FALSE,results='asis', eval = TRUE, include_assets = FALSE}
However, when I plot a simpleNetwork, it does not render if the rCharts are included in the flexboard.
Any ideas?
P.S. not sure what else to include to make the question more reproducible.