Metadata-Version: 2.1
Name: streamlit-apexjs
Version: 0.0.2
Summary: streamlit_apexcharts React component for Streamlit
Home-page: https://github.com/drogbadvc/streamlit-apexcharts
Author: Andell
Author-email: drogadvc@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Streamlit - ApexCharts ReactJS

A Streamlit simple component to display [ApexChart](https://apexcharts.com/).

![](./img/demo.png)

## Usage
```python
from streamlit_apexcharts 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')
```

### st_apexcharts params


```
st_apexcharts(
    options: Dict
    series: List
    type: str
    width: str, number
)
```

## Credit
Thank you for inspiration :) [andfanilo](https://github.com/andfanilo).

