{"id":13531602,"url":"https://github.com/bherbruck/svelte-echarts","last_synced_at":"2025-12-29T23:42:25.627Z","repository":{"id":57375199,"uuid":"431269200","full_name":"bherbruck/svelte-echarts","owner":"bherbruck","description":"Apache ECharts wrapper for Svelte","archived":false,"fork":false,"pushed_at":"2024-05-21T16:51:08.000Z","size":469,"stargazers_count":52,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-05-21T22:28:03.442Z","etag":null,"topics":["svelte"],"latest_commit_sha":null,"homepage":"https://bherbruck.github.io/svelte-echarts/","language":"Svelte","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/bherbruck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2021-11-23T22:14:24.000Z","updated_at":"2024-06-18T16:34:42.452Z","dependencies_parsed_at":"2023-12-22T16:49:12.942Z","dependency_job_id":"910cc573-ecc9-43ce-a0b4-bae610880dde","html_url":"https://github.com/bherbruck/svelte-echarts","commit_stats":{"total_commits":27,"total_committers":1,"mean_commits":27.0,"dds":0.0,"last_synced_commit":"0423e6d6280f364e08ecfd9b555d111a4b535be5"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bherbruck%2Fsvelte-echarts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bherbruck%2Fsvelte-echarts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bherbruck%2Fsvelte-echarts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bherbruck%2Fsvelte-echarts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bherbruck","download_url":"https://codeload.github.com/bherbruck/svelte-echarts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246700684,"owners_count":20819921,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["svelte"],"created_at":"2024-08-01T07:01:04.283Z","updated_at":"2025-12-29T23:42:25.595Z","avatar_url":"https://github.com/bherbruck.png","language":"Svelte","funding_links":[],"categories":["Frameworks"],"sub_categories":["Svelte Component"],"readme":"# svelte-echarts\n\nA simple [Apache ECharts](https://echarts.apache.org/) component for [Svelte](https://svelte.dev/)! Check out this [demo](https://bherbruck.github.io/svelte-echarts/).\n\n## 💿 Installation\n\n```bash\nnpm i -D svelte-echarts echarts\n```\n\n## ⌨️ Usage [demo](https://bherbruck.github.io/svelte-echarts/)\n\n```html\n\u003cscript\u003e\n  import { Chart } from 'svelte-echarts'\n\n  import { init, use } from 'echarts/core'\n  import { BarChart } from 'echarts/charts'\n  import { GridComponent, TitleComponent } from 'echarts/components'\n  import { CanvasRenderer } from 'echarts/renderers'\n\n  // now with tree-shaking\n  use([BarChart, GridComponent, CanvasRenderer, TitleComponent])\n\n  let options = {\n    title: {\n      text: 'ECharts Example',\n    },\n    xAxis: {\n      type: 'category',\n      data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],\n    },\n    yAxis: {\n      type: 'value',\n    },\n    series: [\n      {\n        type: 'bar',\n        data: [120, 200, 150, 80, 70, 110, 130],\n      },\n    ],\n  }\n\u003c/script\u003e\n\n\u003cdiv class=\"app\"\u003e\n  \u003cChart {init} {options} /\u003e\n\u003c/div\u003e\n\n\u003cstyle\u003e\n  .app {\n    width: 100vw;\n    height: 100vh;\n  }\n\u003c/style\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbherbruck%2Fsvelte-echarts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbherbruck%2Fsvelte-echarts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbherbruck%2Fsvelte-echarts/lists"}