Skip to content

Instantly share code, notes, and snippets.

@phillipsj
Created October 13, 2020 15:56
Show Gist options
  • Save phillipsj/b8d7a8b6b44bcbf138240215bdb017a9 to your computer and use it in GitHub Desktop.
Save phillipsj/b8d7a8b6b44bcbf138240215bdb017a9 to your computer and use it in GitHub Desktop.
Creating layout for Dash tutorial
app.layout = html.Div(children=[
html.H1(children='Adventure Works Sales Report'),
html.Div(children='''
YTD Sales by Individual.
'''),
dcc.Graph(
id='sales-graph',
figure=salesFigure
),
html.Div(children='''
Quota by Individual.
'''),
dcc.Graph(
id='quota-graph',
figure=quotaFigure
)
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment