Skip to content

Instantly share code, notes, and snippets.

@Nagatoh
Created May 5, 2022 13:42
Show Gist options
  • Save Nagatoh/aee23a5726e3ae88a5eef83306911e64 to your computer and use it in GitHub Desktop.
Save Nagatoh/aee23a5726e3ae88a5eef83306911e64 to your computer and use it in GitHub Desktop.
import dash
import dash_html_components as html
import dash_core_components as dcc
app = dash.Dash(__name__)
app.layout = html.Div([
dcc.Graph(id="main-graph", figure=fig)
])
if __name__ == '__main__':
app.run_server(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment