I\'m running into layout difficulties with the plots on Dash. All the plots I generate with Dash seem to be auto sized to be very narrow, which makes it hard to actually vie
Alternatively, you can change the viewport sizing in the parent container like:
dcc.Graph(id='my-graph',style={'width': '90vh', 'height': '90vh'})
That will change the graph to be 90% of the viewport height of the browser. You can see more info of viewport on this link.