I have a simple flexdashboard that loads plots from specific folder. Plots were previously rendered and saved to disk as PNG files in a nightly process.
Plots are saved in big sizes.
When loading plots (pictures, in fact) flexdashboard does not expand them to all available room.
img_path <- file.path("plots/picture1.png")
knitr::include_graphics(img_path)
How could be this forced to take all space for every picture?