I currently have a rmd page with high chart and flexdashboard. With database connect to provide data to the charts.
title: "ABC"
output:
flexdashboard::flex_dashboard:
runtime: shiny
orientation: rows
vertical_layout : scroll
theme: yeti
css: style.css
runtime: shiny
How can I deploy this rmd page to eg. HTML while keeping the shiny. Currently I've tried rmarkdown::render() but for some reasons it doesn't connect to the dB and all the charts remain empty.
Don't you need to use rmarkdown::run()
when it is interactive?