{"id":34032336,"url":"https://github.com/stevej2608/reactpy-apexcharts","last_synced_at":"2026-04-09T04:03:13.746Z","repository":{"id":213298178,"uuid":"733566594","full_name":"stevej2608/reactpy-apexcharts","owner":"stevej2608","description":"ReactPy wrapper for react-apexcharts","archived":false,"fork":false,"pushed_at":"2025-12-22T11:49:34.000Z","size":13895,"stargazers_count":9,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-28T12:27:49.908Z","etag":null,"topics":["apexcharts","python","reactpy"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stevej2608.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-19T16:05:41.000Z","updated_at":"2025-12-10T11:32:13.000Z","dependencies_parsed_at":"2023-12-20T12:23:58.903Z","dependency_job_id":"af679486-9cbe-4b82-8fec-6292abbb2a32","html_url":"https://github.com/stevej2608/reactpy-apexcharts","commit_stats":null,"previous_names":["stevej2608/reactpy-apexchart","stevej2608/reactpy-apexcharts"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/stevej2608/reactpy-apexcharts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevej2608%2Freactpy-apexcharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevej2608%2Freactpy-apexcharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevej2608%2Freactpy-apexcharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevej2608%2Freactpy-apexcharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stevej2608","download_url":"https://codeload.github.com/stevej2608/reactpy-apexcharts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevej2608%2Freactpy-apexcharts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31584820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apexcharts","python","reactpy"],"created_at":"2025-12-13T18:44:13.667Z","updated_at":"2026-04-09T04:03:13.741Z","avatar_url":"https://github.com/stevej2608.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## reactpy-apexcharts\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://apexcharts.com/media/apexcharts-banner.png\"\u003e\u003c/p\u003e\n\n\n Minimal [ReactPy](https://reactpy.dev/docs/index.html) wrapper for \n the [react-apexcharts](https://github.com/apexcharts/react-apexcharts) library (v 1.4.1).\n\n## Usage\n\n    pip install reactpy-apexcharts\n\n## Documentation\n\nConfiguration options can be found [here](https://apexcharts.com/docs/react-charts/)\n\n### Simple Barchart Example\n\n![](https://raw.githubusercontent.com/stevej2608/reactpy-apexchart/master/docs/img/barchart-example.png)\n\n*./examples/barchart_example.py*\n```\nfrom reactpy import component, html, run\nfrom reactpy_apexcharts import ApexChart\n\n@component\ndef AppMain():\n\n    return html.div(\n\n        ApexChart(\n            options = {\n                'chart': {'id': 'apex-chart-example'},\n                'xaxis': {\n                'categories': [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999]}\n            },\n\n            series = [{\n                'name': 'series-1',\n                'data': [30, 40, 35, 50, 49, 60, 70, 91, 125]\n            }],\n\n            chart_type = \"bar\",\n            width=500,\n            height=320\n        )\n    )\n\n# python -m examples.chart_example\n\nif __name__ == \"__main__\":\n    run(AppMain)\n```\n\n### More complex area chart\n\n[syncing_chart.py](examples/syncing_chart.py), is a more complex example showing how to control color, grids and\nformat X \u0026 Y axis labels.\n\n![](https://raw.githubusercontent.com/stevej2608/reactpy-apexchart/master/docs/img/syncing_charts.png)\n\n*./examples/syncing_chart.py*\n```\nfrom reactpy import component, html, run\nfrom reactpy_apexcharts import ApexChart\n\nDATE = dt(2017, 2, 11)\n\noptions = {\n    \"series\": [{\"data\": time_series(DATE, 20, {\"min\": 10, \"max\": 60})}],\n    \"chart\": {\"id\": \"fb\", \"group\": \"social\", \"type\": \"line\", \"height\": 160},\n    \"xaxis\": {'type': 'datetime'},\n    \"colors\": [\"#008FFB\"],\n}\n\noptionsLine2 = {\n    \"series\": [{\"data\": time_series(DATE, 20, {\"min\": 10, \"max\": 30})}],\n    \"chart\": {\"id\": \"tw\", \"group\": \"social\", \"type\": \"line\", \"height\": 160},\n    \"xaxis\": {'type': 'datetime'},\n    \"colors\": [\"#546E7A\"],\n}\n\noptionsArea = {\n    \"series\": [{\"data\": time_series(DATE, 20, {\"min\": 10, \"max\": 60})}],\n    \"chart\": {\"id\": \"yt\",\"group\": \"social\",\"type\": \"area\",\"height\": 160},\n    \"xaxis\": {'type': 'datetime'},\n    \"colors\": [\"#00E396\"]\n}\n\n\n@component\ndef CustomChart(options):\n    return  html.div({'style': {'min-height': '175px'}},\n        ApexChart(options=options),\n    )\n\n@component\ndef AppMain():\n    return html.div(\n        CustomChart(options=options),\n        CustomChart(options=optionsLine2),\n        CustomChart(options=optionsArea),\n    )\n\n\n# python -m examples.syncing_chart\n\nif __name__ == \"__main__\":\n    run(AppMain)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevej2608%2Freactpy-apexcharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstevej2608%2Freactpy-apexcharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevej2608%2Freactpy-apexcharts/lists"}