streamlit-apexjs

streamlit_apexcharts React component for Streamlit


Keywords
apexcharts, streamlit
License
MIT
Install
pip install streamlit-apexjs==0.0.3

Documentation

Streamlit - ApexCharts ReactJS

A Streamlit simple component to display ApexChart.

Install

pip install streamlit_apexjs

Usage

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')

st_apexcharts params

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

Credit

Thank you for inspiration :) andfanilo.