我目前正在尝试用破折号绘制三个示例数据集的图形,并希望使用“下拉列表”以便一次仅显示一个。 但是,它一次显示所有三个数据集,并且选择另一个下拉菜单项不会更改图形。
有人可以帮忙吗? 我是破折号的新手,找不到这种情况的简单示例。
# -*- coding: utf-8 -*-
import dash
import dash_core_components as dcc
import dash_html_components as html
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
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': 'NYC'},
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': 'MTL'},
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': 'SF'},
],
'layout': {
'title': 'Dash Data Visualization'
}
}
),
html.Label('Dropdown'),
dcc.Dropdown(
options=[
{'label': 'New York City', 'value': 'NYC'},
{'label': u'Montréal', 'value': 'MTL'},
{'label': 'San Francisco', 'value': 'SF'}
],
value='MTL'
)
])
if __name__ == '__main__':
app.run_server(debug=True)