Answers for "plotly dash datatable column width"

0

plotly dash datatable column width

app.layout = dash_table.DataTable(
    data=df.to_dict('records'),
    columns=[{'id': c, 'name': c} for c in df.columns],
    style_cell_conditional=[
        {'if': {'column_id': 'Temperature'},
         'width': '130px'},
        {'if': {'column_id': 'Humidity'},
         'width': '130px'},
        {'if': {'column_id': 'Pressure'},
         'width': '130px'},
    ]
)
Posted by: Guest on January-10-2022

Python Answers by Framework

Browse Popular Code Answers by Language