Skip to content

drogbadvc/streamlit-apexcharts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

st_apexcharts params

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

Credit

Thank you for inspiration :) andfanilo.

About

A Streamlit simple component to display ApexChart.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published