📜  如何使用 python free dash 制作具有数据表示的仪表板 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:38.398000             🧑  作者: Mango

代码示例1
dcc.Graph(
        id='example',
        figure={
            'data': [
                {'x': [1, 2, 3, 4, 5], 'y': [9, 6, 2, 1, 5], 'type': 'line', 'name': 'Boats'},
                {'x': [1, 2, 3, 4, 5], 'y': [8, 7, 2, 7, 3], 'type': 'bar', 'name': 'Cars'},
            ],
            'layout': {
                'title': 'Basic Dash Example'
            }
        }
    )