{"id":42732407,"url":"https://github.com/abdullah/vue-echarts","last_synced_at":"2026-01-29T17:18:32.602Z","repository":{"id":57389649,"uuid":"61790783","full_name":"abdullah/vue-echarts","owner":"abdullah","description":"Echarts for vue.js  ","archived":false,"fork":false,"pushed_at":"2016-06-23T15:39:54.000Z","size":1584,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-16T20:48:49.413Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abdullah.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-06-23T09:00:19.000Z","updated_at":"2021-06-28T13:38:53.000Z","dependencies_parsed_at":"2022-09-09T22:03:54.181Z","dependency_job_id":null,"html_url":"https://github.com/abdullah/vue-echarts","commit_stats":null,"previous_names":["iltegin/vue-echarts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abdullah/vue-echarts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullah%2Fvue-echarts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullah%2Fvue-echarts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullah%2Fvue-echarts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullah%2Fvue-echarts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdullah","download_url":"https://codeload.github.com/abdullah/vue-echarts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullah%2Fvue-echarts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28881694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T16:41:59.663Z","status":"ssl_error","status_checked_at":"2026-01-29T16:39:39.641Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-29T17:18:31.946Z","updated_at":"2026-01-29T17:18:32.594Z","avatar_url":"https://github.com/abdullah.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-echarts\n\n\u003e ECharts Components for Vue.js \n\n## İnstallation \n\n    npm i -S v-echarts\n\n[Demo](https://echart-vue.herokuapp.com/)\n\n##Use\n\t// Vue Template\n\t\n\t\u003cEchartsv classname=\"chart-style\" :options.sync=\"options\"\u003e\u003c/Echartsv\u003e\n \n    //JS\n    import Echartsv from './components/Echartsv';\n    \n    export default {\n       data () {\n        return {\n\t         option = {\n\t\t\t    tooltip: {\n\t\t\t        trigger: 'item',\n\t\t\t        formatter: \"{a} \u003cbr/\u003e{b}: {c} ({d}%)\"\n\t\t\t    },\n\t\t\t    legend: {\n\t\t\t        /*\n\t\t\t            TODO : Change show key \n\t\t\t        */\n\t\t\t        show:false,\n\t\t\t        orient: 'vertical',\n\t\t\t        x: 'left',\n\t\t\t        data:['data-one','data-two']\n\t\t\t    },\n\t\t\t    series: [\n\t\t\t        {\n\t\t\t            name:'chart-name',\n\t\t\t            type:'pie',\n\t\t\t            radius: ['50%', '70%'],\n\t\t\t            avoidLabelOverlap: false,\n\t\t\t            label: {\n\t\t\t                normal: {\n\t\t\t                    show: false,\n\t\t\t                    position: 'center'\n\t\t\t                },\n\t\t\t                emphasis: {\n\t\t\t                    show: true,\n\t\t\t                    textStyle: {\n\t\t\t                        fontSize: '30',\n\t\t\t                        fontWeight: 'bold'\n\t\t\t                    }\n\t\t\t                }\n\t\t\t            },\n\t\t\t            labelLine: {\n\t\t\t                normal: {\n\t\t\t                    show: false\n\t\t\t                }\n\t\t\t            },\n\t\t\t            data:[\n\t\t\t                {value:335, name:'data-one'},\n\t\t\t                {value:310, name:'data-two'},\n\t\t\t            ]\n\t\t\t        }\n\t\t\t    ]\n\t\t\t}\n        }\n      },\n      //Register Component\n      components: {\n        Echartsv\n      }\n    }\n   \n    \n\t //css\n     .chart-style{\n       width: 600px;\n       height: 300px;\n       float: none;\n       clear: both;\n     }\n\n\n##Options \n\n\nOption object is required so It can be referenced from [Echarts Library](https://ecomfe.github.io/echarts/doc/doc-en.html)\n\n##Classname\nDefault classname `___charts___` this property `height: 400px;`\n\n## Build Setup Development\n\n``` bash\n# install dependencies\nnpm install\n\n# serve with hot reload at localhost:8080\nnpm run dev\n\n# build for production with minification\nnpm run build\n\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullah%2Fvue-echarts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullah%2Fvue-echarts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullah%2Fvue-echarts/lists"}