Created
October 13, 2020 15:56
-
-
Save phillipsj/b8d7a8b6b44bcbf138240215bdb017a9 to your computer and use it in GitHub Desktop.
Creating layout for Dash tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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