Dash wrapper for apexcharts library
Project description
dash-holoniq-apexcharts
Minimal Dash wrapper for react-apexcharts library.
Code Snippet
from dash_holoniq_apexcharts import DashApexcharts
import dash
from dash import html
app = dash.Dash(__name__)
app.layout = html.Div([
DashApexcharts(
options = {
'chart': {'id': 'apex-chart-example'},
'xaxis': { 'categories': [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999]}
},
series = [{
'name': 'series-1',
'data': [30, 40, 35, 50, 49, 60, 70, 91, 125]
}],
type = "bar",
width=500,
height=320
)
])
if __name__ == '__main__':
app.run_server(debug=False, host="0.0.0.0", port=5000)
Installation
You can install dash-holoniq-apexcharts with pip:
pip install dash-holoniq-apexcharts
Documentation
Head over to the README for more details.
Contributing
The source code for dash-holoniq-apexcharts 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_holoniq_apexcharts-0.0.6.tar.gz.
File metadata
- Download URL: dash_holoniq_apexcharts-0.0.6.tar.gz
- Upload date:
- Size: 509.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83a65c8791e1412de2f4e115fd46bcef6b36b25121f9a769c3b30832756e4647
|
|
| MD5 |
c280c7a6dd05e7fc4c4d8772d6d28ca1
|
|
| BLAKE2b-256 |
a161135c8c29cfd72ae03d7fd75734faf643b1571c854c38a6ef11e6e67bede2
|
File details
Details for the file dash_holoniq_apexcharts-0.0.6-py3-none-any.whl.
File metadata
- Download URL: dash_holoniq_apexcharts-0.0.6-py3-none-any.whl
- Upload date:
- Size: 512.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
978daab27afddb5dc3986299c56b0439ddf1ce25eafb033c687c188abd85b5c4
|
|
| MD5 |
5208e37b9893dd4603c516a880626cb0
|
|
| BLAKE2b-256 |
5a2caf6a10f655c6e141bc70dfe985440e9cf14c97b659340e0f2c22ac392ca7
|