Skip to content

Instantly share code, notes, and snippets.

@jackparmer
Created January 18, 2018 20:26
Show Gist options
  • Save jackparmer/f2dfdaf74ed9b423736c16e327476d97 to your computer and use it in GitHub Desktop.
Save jackparmer/f2dfdaf74ed9b423736c16e327476d97 to your computer and use it in GitHub Desktop.
import dash
import dash_core_components as dcc
import dash_html_components as html
import os
import dash_table_experiments
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(50, 4), columns=list('ABCD'))
COLORS = [
{
'background': '#fef0d9',
'text': 'rgb(30, 30, 30)'
},
{
'background': '#fdcc8a',
'text': 'rgb(30, 30, 30)'
},
{
'background': '#fc8d59',
'text': 'rgb(30, 30, 30)'
},
{
'background': '#d7301f',
'text': 'white'
},
]
def is_numeric(value):
try:
float(value)
return True
except ValueError:
return False
def cell_style(value, min_value, max_value):
style = {}
if is_numeric(value):
relative_value = (value - min_value) / (max_value - min_value)
if relative_value <= 0.25:
style = {
'backgroundColor': COLORS[0]['background'],
'color': COLORS[0]['text']
}
elif relative_value <= 0.5:
style = {
'backgroundColor': COLORS[1]['background'],
'color': COLORS[1]['text']
}
elif relative_value <= 0.75:
style = {
'backgroundColor': COLORS[2]['background'],
'color': COLORS[2]['text']
}
elif relative_value <= 1:
style = {
'backgroundColor': COLORS[3]['background'],
'color': COLORS[3]['text']
}
return style
def generate_table(dataframe, max_rows=100):
max_value = df.max(numeric_only=True).max()
min_value = df.min(numeric_only=True).max()
rows = []
for i in range(min(len(dataframe), max_rows)):
row = []
for col in dataframe.columns:
value = dataframe.iloc[i][col]
style = cell_style(value, min_value, max_value)
row.append(html.Td(value, style=style))
rows.append(html.Tr(row))
return html.Table(
# Header
[html.Tr([html.Th(col) for col in dataframe.columns])] +
# Body
rows)
app = dash.Dash(__name__)
server = app.server
app.css.append_css({"external_url": "https://codepen.io/chriddyp/pen/bWLwgP.css"})
app.layout = html.Div([
dcc.Markdown('''
### Dash Style Tips
Any html element and most dcc elements can accept a style argument.
The below code, for example, will set the font color in a div to red:
```
html.Div(['Hello World'], style = {'color': 'red'})
```
'''),
html.Div(['Hello World'],
style = {
'color': 'red',
'border-style': 'solid',
'border-width': 'thin',
'border-color': 'black'
}),
dcc.Markdown('''
There's no way around using CSS, css properties are fairly easy to look up if they're needed.
We have a CSS template that provides some fairly smart automatic stylings. It can be added using the below code:
`app.css.append_css({"external_url": "https://codepen.io/chriddyp/pen/bWLwgP.css"})`
These also include bootstrap grids, which are very helpful in doing grid styling.
Divs can have `className` defined as `row` and each `row` has twelve columns, which have `className` from `one column` to `twelve columns`
```
html.Div(['This is a row'], className = 'row')
html.Div([
html.Div(['This is six columns'], className = 'six columns'),
html.Div(['These are nested in rows'], className = 'six columns')
], className = 'row')
```
'''),
html.Div([
html.Div(['This is a row'], className = 'row'),
html.Div([
html.Div(['This is six columns'], className = 'six columns'),
html.Div(['These are nested in rows'], className = 'six columns')
], className = 'row')
], style = {
'border-style': 'solid',
'border-width': 'thin',
'border-color': 'black'
}),
dcc.Markdown('''
This should be useful in formatting links, though I may need further clarification on what you're looking for there.
For conditionally formatted tables I would recommend checking out [this community post](https://community.plot.ly/t/coloured-text-in-a-table-conditional-formatting/7112/8)
You can see what the table looks like below:
'''),
html.Div(children=[
generate_table(df)
])
])
if __name__ == '__main__':
app.run_server(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment