-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathex2.py
91 lines (84 loc) · 3.11 KB
/
ex2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
## Bootstrap Grid tutorial - adding style to the app
# -*- coding: utf-8 -*-
import dash
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash()
# Boostrap CSS.
app.css.append_css({'external_url': 'https://codepen.io/amyoshino/pen/jzXypZ.css'}) # noqa: E501
app.layout = html.Div(
html.Div([
html.Div(
[
html.H1(children='Hello World',
className='nine columns'),
html.Img(
src="http://test.fulcrumanalytics.com/wp-content/uploads/2015/10/Fulcrum-logo_840X144.png",
className='three columns',
style={
'height': '15%',
'width': '15%',
'float': 'right',
'position': 'relative',
'margin-top': 10,
},
),
html.Div(children='''
Dash: A web application framework for Python.
''',
className='nine columns'
)
], className="row"
),
html.Div(
[
html.Div([
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': 'Graph 1',
'xaxis' : dict(
title='x Axis',
titlefont=dict(
family='Courier New, monospace',
size=20,
color='#7f7f7f'
)),
'yaxis' : dict(
title='y Axis',
titlefont=dict(
family='Helvetica, monospace',
size=20,
color='#7f7f7f'
))
}
}
)
], className= 'six columns'
),
html.Div([
dcc.Graph(
id='example-graph-2',
figure={
'data': [
{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'line', 'name': 'SF'},
{'x': [1, 2, 3], 'y': [2, 9, 8], 'type': 'line', 'name': u'Montréal'},
],
'layout': {
'title': 'Graph 2'
}
}
)
], className= 'six columns'
)
], className="row"
)
], className='ten columns offset-by-one')
)
if __name__ == '__main__':
app.run_server(debug=True)