ユーザ用ツール

サイト用ツール


サイドバー

Top

プログラミング:python:webアプリケーションフレームワーク:dash:基本構造

以前のリビジョンの文書です


基本構造

import dash
import dash_core_components as dcc
import dash_html_components as html
 
# 外部スタイルシート
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
 
# Dashアプリケーション生成
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
 
# HTMLレイアウト設定
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, 4, 5], 'y': [2, 1, 3, 6, 8], 'type': 'bar', 'name': 'XXXX'},
                {'x': [1, 2, 3, 4, 5], 'y': [4, 9, 5, 6, 1], 'type': 'bar', 'name': 'YYYY'},
            ],
            'layout': {
                'title': 'Dash Data Visualization'
            }
        }
    )
])
 
# アプリケーションサーバ起動
if __name__ == '__main__':
    app.run_server(debug=True)
プログラミング/python/webアプリケーションフレームワーク/dash/基本構造.1563185672.txt.gz · 最終更新: 2019/07/15 10:14 by sotoyama