Offline dashboards

Hi @rupert,

That’s correct, Dash is for creating interactive dashboards where you have a Python kernel in the loop for performing dynamic updates to the widgets and plots.

If you’re not looking for the interactivity, and would like to display a collection of plots together in a standalone webpage, another option is to create your own simple html files. Here is an example of that approach: How to make Html Report readable from all browsers.

-Jon