https://github.com/drogbadvc/streamlit-apexcharts
A Streamlit simple component to display ApexChart.
https://github.com/drogbadvc/streamlit-apexcharts
apexcharts streamlit
Last synced: 8 months ago
JSON representation
A Streamlit simple component to display ApexChart.
- Host: GitHub
- URL: https://github.com/drogbadvc/streamlit-apexcharts
- Owner: drogbadvc
- License: mit
- Created: 2023-03-01T11:17:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T20:43:00.000Z (over 3 years ago)
- Last Synced: 2025-08-30T16:39:33.032Z (10 months ago)
- Topics: apexcharts, streamlit
- Language: TypeScript
- Homepage: https://pypi.org/project/streamlit-apexjs/
- Size: 518 KB
- Stars: 16
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit - ApexCharts ReactJS
A Streamlit simple component to display [ApexChart](https://apexcharts.com/).

## Install
```shell script
pip install streamlit_apexjs
```
## Usage
```python
from streamlit_apexjs import st_apexcharts
options = {
"chart": {
"toolbar": {
"show": False
}
},
"labels": [1991, 1992, 1993, 1994, 1995]
,
"legend": {
"show": True,
"position": "bottom",
}
}
series = [44, 55, 41, 17, 15]
st_apexcharts(options, series, 'donut', '600', 'title')
```
### st_apexcharts params
```
st_apexcharts(
options: Dict
series: List
type: str
width: str, number
title: str
)
```
## Credit
Thank you for inspiration :) [andfanilo](https://github.com/andfanilo).