I currently have an interactive dashboard that I created with python plotly and dash. The user can choose from a dropdown menu what data to plot. An example would be to choose a country from a country list to then update the plots to show country specific data.
My question is how to implement such an interactive plot in Django to implement interactive plots on a website that the user can interact with, such as via dropdowns.
I am currently researching two options: 1) the django-plotly-dash package to directly implement my dash app and 2) plotly.js
I am curious if anyone has experience with this topic and can point me in the right direction and share any ideas or even examples/tutorials.
Much appreciated!