Skip to content

Instantly share code, notes, and snippets.

@marcogoldin
Last active November 28, 2022 15:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcogoldin/8fc4c3945cef17ca38d55c4e17ebbbe6 to your computer and use it in GitHub Desktop.
Save marcogoldin/8fc4c3945cef17ca38d55c4e17ebbbe6 to your computer and use it in GitHub Desktop.
Dash DataTable Bootstrap style
import dash_html_components as html
import dash_table
import pandas as pd
def data_table(df):
table = html.Div(
className='table table-responsive-md p-3',
children=dash_table.DataTable(
id='tabella-milano',
data=df.to_dict('records'),
columns=[{'id': c, 'name': c} for c in df.columns],
page_size=50,
filter_action="native",
sort_action="native",
sort_mode="single",
column_selectable="single",
style_table={"fontFamily": '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"'},
style_header={
'backgroundColor': 'white',
'fontWeight': 'bold',
'padding':'0.75rem'
},
style_cell={
"fontFamily": '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"',
'fontWeight': '400',
'lineHeight': '1.5',
'color': '#212529',
'textAlign': 'left',
'whiteSpace': 'normal',
'height': 'auto',
'padding':'0.75rem',
'border': '1px solid #dee2e6',
'verticalAlign': 'top',
},
style_data_conditional=[
{
'if': {'row_index': 'odd'},
'backgroundColor': '#f8f9fa'
}
],
))
return table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment