簡體   English   中英

如何將Python Dash清單分為幾列?

[英]How to divide a Python Dash checklist into several columns?

我是Dash的初學者,而且我從未用html編寫過代碼,因此我不確定這一切如何工作。

我一直試圖將清單分成幾列。

這是我的代碼的一部分:

        html.Div(
                dcc.Checklist(className ='checkbox_1',
                        options=[
                            {'label': 'A1', 'value': 'I1ST1'},
                            {'label': 'A2', 'value': 'I2ST1'},
                            {'label': 'A3', 'value': 'I3ST1'},
                            {'label': 'A4', 'value': 'I4ST1'},
                            {'label': 'A5', 'value': 'I5ST1'},
                            {'label': 'A6', 'value': 'I6ST1'}
                                ],
                        values='I1ST1',
                        labelStyle = {'display': 'block'}
                                ),
            ),

            html.Div(
                dcc.Checklist(className ='checkbox_1',
                        options=[
                            {'label': 'B1', 'value': 'I1ST2'},
                            {'label': 'B2', 'value': 'I2ST2'},
                            {'label': 'B3', 'value': 'I3ST2'},
                            {'label': 'B4', 'value': 'I4ST2'},
                            {'label': 'B5', 'value': 'I5ST2'},
                            {'label': 'B6', 'value': 'I6ST2'}
                                ],
                        values='I1ST2',
                        labelStyle = {'display': 'block'}
                                )
            ),
            html.Div(
                dcc.Checklist(className ='checkbox_1',
                        options=[
                            {'label': 'C1', 'value': 'I1MT'},
                            {'label': 'C2', 'value': 'I2MT'},
                            {'label': 'C3', 'value': 'I3MT'}
                                ],
                        values='I1MT',
                        labelStyle = {'display': 'block'}
                                )
                    )       
                ]
            )

我目前有這樣的東西:

☒ A1
☐ A2
☐ A3
☐ A4
☐ A5
☐ A6
☒ B1
☐ B2
☐ B3
☐ B4
☐ B5
☐ B6
☒ C1
☐ C2
☐ C3

我想要的是這樣的:

☒ A1   ☒ B1   ☒ C1
☐ A2   ☐ B2   ☐ C2
☐ A3   ☐ B3   ☐ C3
☐ A4   ☐ B4
☐ A5   ☐ B5
☐ A6   ☐ B6

我試圖在labelStyle函數(float,width)中添加一些CSS函數,但是它們都不起作用。

我這樣做正確嗎? 我該怎么辦?

我們可以實現這一目標的一種方法如下:

import dash
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output

app = dash.Dash(__name__)


app.layout = html.Div([
    html.Div(
        style={'width':'5%', 'height':'100%','float':'left'},
        children=[
            dcc.Checklist(className ='checkbox_1',
                    options=[
                        {'label': 'A1', 'value': 'I1ST1'},
                        {'label': 'A2', 'value': 'I2ST1'},
                        {'label': 'A3', 'value': 'I3ST1'},
                        {'label': 'A4', 'value': 'I4ST1'},
                        {'label': 'A5', 'value': 'I5ST1'},
                        {'label': 'A6', 'value': 'I6ST1'}
                            ],
                    values=['I1ST1'],
                    labelStyle = {'display': 'block'}
                            ),
        ]
    ),
    html.Div(
        style={'width':'5%', 'height':'100%','float':'left'},
        children=[
            dcc.Checklist(className ='checkbox_1',
                    options=[
                        {'label': 'B1', 'value': 'I1ST2'},
                        {'label': 'B2', 'value': 'I2ST2'},
                        {'label': 'B3', 'value': 'I3ST2'},
                        {'label': 'B4', 'value': 'I4ST2'},
                        {'label': 'B5', 'value': 'I5ST2'},
                        {'label': 'B6', 'value': 'I6ST2'}
                            ],
                    values=['I1ST2'],
                    labelStyle = {'display': 'block'}
                            )
        ]
    ),
    html.Div(
        style={'width':'5%', 'height':'100%','float':'left'},
        children=[
            dcc.Checklist(className ='checkbox_1',
                    options=[
                        {'label': 'C1', 'value': 'I1MT'},
                        {'label': 'C2', 'value': 'I2MT'},
                        {'label': 'C3', 'value': 'I3MT'}
                            ],
                    values=['I1MT'],
                    labelStyle = {'display': 'block'}
                            )
        ]
    )
])


if __name__ == '__main__':
    app.run_server(debug=True)

我們可以使用style選項為每個破折號組件設置style ,使用它們可以自定義布局。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM