Open ghost opened 4 years ago
this style.css makes your graph thus page grow indefinitely; dump the style.css into assets for auto load:
div { border:1px dotted gray; padding:.5em }
example from you to try yourself:
# -*- coding: utf-8 -*- import dash import dash_core_components as dcc import dash_html_components as html app = dash.Dash(__name__) app.layout = html.Div(children=[ html.H1(children='Hello Dash'), html.Div(children=''' Dash: A web application framework for Python. '''), dcc.Graph( id='example-graph', figure={ 'data': [ {'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'}, {'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'}, ], 'layout': { 'title': 'Dash Data Visualization' } } ) ]) if __name__ == '__main__': app.run_server(debug=False)
all latest version, chromium
This is a funky bug haha
this style.css makes your graph thus page grow indefinitely; dump the style.css into assets for auto load:
example from you to try yourself:
all latest version, chromium