Dash wrapper for chartist library
Project description
dash-chartist
Minimal Dash wrapper for react-chartist library.
Code Snippet
from dash_chartist import DashChartist
import dash
from dash import html
external_stylesheets = [
"https://cdnjs.cloudflare.com/ajax/libs/chartist/0.3.1/chartist.min.css",
]
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
data = {
"labels": ['W1', 'W2', 'W3', 'W4', 'W5', 'W6', 'W7', 'W8', 'W9', 'W10'],
"series": [ [1, 2, 4, 8, 6, -2, -1, -4, -6, -2] ]
}
options = {
"high": 10,
"low": -10,
}
chartType = 'Bar'
app.layout = html.Div([
DashChartist(type=chartType, options=options, data=data)
])
if __name__ == '__main__':
app.run_server(debug=False, host="0.0.0.0", port=5000)
Installation
You can install dash-chartist with pip:
pip install dash-chartist
Documentation
Head over to the README for more details.
Contributing
The source code for dash-chartist is available on GitHub. If you find a bug or something is unclear, we encourage you to raise an issue. We also welcome contributions, to contribute, fork the repository and open a pull request.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dash_chartist-0.0.5.tar.gz.
File metadata
- Download URL: dash_chartist-0.0.5.tar.gz
- Upload date:
- Size: 153.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5dc5b1e88555e5b39651c768bc59d6adf5aed5aa5d783b512a7cda2fcf408b6
|
|
| MD5 |
01c73f5dca1b54722b1d9c5c58fb12a3
|
|
| BLAKE2b-256 |
343e74cee73219331e207e0c0f868831bad76cf642db0d8cf51d25ac201bfe32
|
File details
Details for the file dash_chartist-0.0.5-py3-none-any.whl.
File metadata
- Download URL: dash_chartist-0.0.5-py3-none-any.whl
- Upload date:
- Size: 154.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f25b8f2857c6aeeafdc7440d3cb41d990fd370d42e40b7c80683b0d9af6afa58
|
|
| MD5 |
9c20b3d4858362b57dd4d3ced2b1070a
|
|
| BLAKE2b-256 |
d775f98070cab8c6d113f976ac48b27e379e404069cd8669f033530545a08533
|