Building Dashboards with Dash and Plotly
Alex Scriven
Data Scientist
style_cell
d_table = DataTable(
# Other table properties
style_cell=(
{'textAlign':'left'}
))
style_cell_conditional
d_table = DataTable(
# Other table properties
style_cell=(
{'textAlign':'left'}),
style_cell_conditional=[
{'if': {'column_id':'Sales Volume'},
'textAlign':'center'}])
style_header
style_header_conditional
d_table = DataTable( # Other table properties style_header={ 'background-color':'black', 'color':'white'},
style_header_conditional=[ {'if': {'column_id':'Sales Volume'}, 'background-color':'blue'}])
Styled column headers;
cell_selectable
argument to True
@app.callback(
Output('test_text', 'children'),
Input('my_dt', 'selected_cells'))
def print_it(input):
return str(input)
Selecting cells:
row_selectable
to single
or multi
@app.callback(
Output('test_text', 'children'),
Input('my_dt', 'selected_rows'))
def print_it(input):
return str(input)
The row index is returned;
column_selectable
to single
or multi
'selectable': True
to column definitions{"name": "Sales Volume", "id": "Sales Volume", "selectable":True}
@app.callback(
Output('test_text', 'children'),
Input('my_dt', 'selected_columns'))
def print_it(input):
return str(input)
Column ID is returned
Building Dashboards with Dash and Plotly