Hello,
I am trying to learn plotly, dash an django by building a dashboard to visualise data of weather stations in Germany and I am trying to host the dashboard using django.
When I run the dashboard the dashboard looks like this:
python dwd_dashboard.py
The image above is the expected behaviour but when I run:
python manage.py runserver
127.0.0.1:8000/dash_app
The dashboard is now only visible at the top of the page and I have to scroll down to see the rest of the dashboard.
I’ve tried to add css to dash_app.html file and to the dash-container
app.layout = html.Div(classname="dash-container",children=[])
Could someone please point me in the right direction?
Thanks in advance