Dash Plotly component providing Tabulator tables
Project description
dash_tabulator
Dash tabulator is a Dash / Plotly component providing Tabulator capabilities. This is not a fully comprehensive implementation of Tabulator just the basics necessary to get the application working. Under the covers this uses react-tabulator
This is built on the shoulders of the Dash Plotly team, the Tabulator team, and the React Tabulator team. This readme is probably longer than the code, due to the work of those individuals!
Features
- Tabulator Column settings
- Sorting / Filtering etc.
- Data loading through Dash Plotly callbacks
- Row Click Callbacks
- Download button to export as csv / xlsx / pdf
- XLSX & PDF require 3 party js scripts, see above link for details
Installation
Installation can be done with pip in your dash project
pip install dash_tabulator
Usage
Sample usage
import dash_tabulator
import dash
from dash.dependencies import Input, Output
import dash_html_components as html
import dash_core_components as dcc
from textwrap import dedent as d
import json
# 3rd party js to export as xlsx
external_scripts = ['https://oss.sheetjs.com/sheetjs/xlsx.full.min.js']
# bootstrap css
external_stylesheets = ['https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css']
# initialize your dash app as normal
app = dash.Dash(__name__, external_scripts=external_scripts, external_stylesheets=external_stylesheets)
styles = {
'pre': {
'border': 'thin lightgrey solid',
'overflowX': 'scroll'
}
}
# Setup some columns
# This is the same as if you were using tabulator directly in js
columns = [
{ "title": "Name", "field": "name", "width": 150, "headerFilter":True},
{ "title": "Age", "field": "age", "hozAlign": "left", "formatter": "progress" },
{ "title": "Favourite Color", "field": "col", "headerFilter":True },
{ "title": "Date Of Birth", "field": "dob", "hozAlign": "center" },
{ "title": "Rating", "field": "rating", "hozAlign": "center", "formatter": "star" },
{ "title": "Passed?", "field": "passed", "hozAlign": "center", "formatter": "tickCross" }
]
# Setup some data
data = [
{"id":1, "name":"Oli Bob", "age":"12", "col":"red", "dob":""},
{"id":2, "name":"Mary May", "age":"1", "col":"blue", "dob":"14/05/1982"},
{"id":3, "name":"Christine Lobowski", "age":"42", "col":"green", "dob":"22/05/1982"},
{"id":4, "name":"Brendon Philips", "age":"125", "col":"orange", "dob":"01/08/1980"},
{"id":5, "name":"Margret Marmajuke", "age":"16", "col":"yellow", "dob":"31/01/1999"},
{"id":6, "name":"Fred Savage", "age":"16", "col":"yellow", "rating":"1", "dob":"31/01/1999"},
{"id":6, "name":"Brie Larson", "age":"30", "col":"blue", "rating":"1", "dob":"31/01/1999"},
]
# Additional options can be setup here
# these are passed directly to tabulator
# In this example we are enabling selection
# Allowing you to select only 1 row
# and grouping by the col (color) column
options = { "groupBy": "col", "selectable":1}
# downloadButtonType
# takes
# css => class names
# text => Text on the button
# type => type of download (csv/ xlsx / pdf, remember to include appropriate 3rd party js libraries)
# filename => filename prefix defaults to data, will download as filename.type
downloadButtonType = {"css": "btn btn-primary", "text":"Export", "type":"xlsx"}
# Add a dash_tabulator table
# add empty columns and data arrays to setup the react props
# columns=[],
# data=[],
# not doing will give you ugly recursive errors
# and nothing will work
app.layout = html.Div([
dash_tabulator.DashTabulator(
id='tabulator',
columns=[],
data=[],
options=options,
downloadButtonType=downloadButtonType,
),
html.Div(id='output'),
dcc.Interval(
id='interval-component-iu',
interval=1*10, # in milliseconds
n_intervals=0,
max_intervals=0
)
])
# dash_tabulator can be populated from a dash callback
@app.callback([ Output('tabulator', 'columns'),
Output('tabulator', 'data')],
[Input('interval-component-iu', 'n_intervals')])
def initialize(val):
return columns, data
# dash_tabulator can register a callback on rowClicked
# to receive a dict of the row values
@app.callback(Output('output', 'children'), [Input('tabulator', 'rowClicked')])
def display_output(value):
print(value)
return 'You have entered {}'.format(value)
if __name__ == '__main__':
app.run_server(debug=True)
Homepage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dash_tabulator-0.0.5.tar.gz
(411.7 kB
view details)
File details
Details for the file dash_tabulator-0.0.5.tar.gz
.
File metadata
- Download URL: dash_tabulator-0.0.5.tar.gz
- Upload date:
- Size: 411.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fddc1b981a383831df26b4e8161976b75574084ffc352dc253b65237b4e6416 |
|
MD5 | b8622755d22ae1bbd0bdd765647b793f |
|
BLAKE2b-256 | 034f1319f5f0f5b00c8293419db9136926965a2491f3ba818275a0e1041b3c75 |