{"id":18348005,"url":"https://github.com/collaborne/d3-progress-meter","last_synced_at":"2025-04-09T23:26:56.376Z","repository":{"id":57741172,"uuid":"42374066","full_name":"Collaborne/d3-progress-meter","owner":"Collaborne","description":"Web component providing a D3 based progress meter (Polymer 1.x)","archived":false,"fork":false,"pushed_at":"2018-11-21T13:28:21.000Z","size":872,"stargazers_count":15,"open_issues_count":0,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-21T22:38:50.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.webcomponents.org/element/Collaborne/d3-progress-meter","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Collaborne.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}},"created_at":"2015-09-12T21:40:25.000Z","updated_at":"2018-11-21T13:28:23.000Z","dependencies_parsed_at":"2022-09-09T06:01:34.545Z","dependency_job_id":null,"html_url":"https://github.com/Collaborne/d3-progress-meter","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Collaborne%2Fd3-progress-meter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Collaborne%2Fd3-progress-meter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Collaborne%2Fd3-progress-meter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Collaborne%2Fd3-progress-meter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Collaborne","download_url":"https://codeload.github.com/Collaborne/d3-progress-meter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248128057,"owners_count":21052347,"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":[],"created_at":"2024-11-05T21:16:01.900Z","updated_at":"2025-04-09T23:26:56.352Z","avatar_url":"https://github.com/Collaborne.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"d3-progress-meter [![Bower version](https://badge.fury.io/bo/d3-progress-meter.svg)](http://badge.fury.io/bo/d3-progress-meter) [![Travis state](https://travis-ci.org/Collaborne/d3-progress-meter.svg?branch=master)](https://travis-ci.org/Collaborne/d3-progress-meter) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/Collaborne/d3-progress-meter)  \n[![Published on Vaadin  Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/Collaborned3-progress-meter)\n[![Stars on vaadin.com/directory](https://img.shields.io/vaadin-directory/star/Collaborned3-progress-meter.svg)](https://vaadin.com/directory/component/Collaborned3-progress-meter)\n=================\n\n`d3-progress-meter` is an animated chart that shows the progress as a meter. The web component is built with [Polymer 1.x](https://www.polymer-project.org) and [D3](http://d3js.org).\n\nThe component has been inspired by [EK-progress-meter](https://github.com/pinkhominid/ek-progress-meter).\n\nTo use this element:\n\n`bower install d3-progress-meter`\n\n## Examples\n\n\u003c!--\n```\n\u003ccustom-element-demo\u003e\n  \u003ctemplate\u003e\n    \u003clink rel=\"import\" href=\"d3-progress-meter.html\"\u003e\n    \u003cnext-code-block\u003e\u003c/next-code-block\u003e\n  \u003c/template\u003e\n\u003c/custom-element-demo\u003e\n```\n--\u003e\n\n```html\n\u003cd3-progress-meter radius=\"100\" percentage=\"0.2\" current-text=\"70\" goal-text=\"Goal: 200\" type-text=\"transactions\"\u003e\u003c/d3-progress-meter\u003e\n\u003cd3-progress-meter radius=\"100\" percentage=\"0.65\" current-text=\"6.5m\" goal-text=\"Goal: $10m\" type-text=\"revenue\"\u003e\u003c/d3-progress-meter\u003e\n\u003cd3-progress-meter radius=\"100\" percentage=\"0.9\" current-text=\"225\" goal-text=\"Goal: 250\" type-text=\"points\"\u003e\u003c/d3-progress-meter\u003e\n```\n\n### Custom Styling\n\n\u003c!--\n```\n\u003ccustom-element-demo\u003e\n  \u003ctemplate\u003e\n    \u003clink rel=\"import\" href=\"d3-progress-meter.html\"\u003e\n    \u003cnext-code-block\u003e\u003c/next-code-block\u003e\n  \u003c/template\u003e\n\u003c/custom-element-demo\u003e\n```\n--\u003e\n\n```html\n\u003cstyle is=\"custom-style\"\u003e\n    .custom {\n        --progress-meter-background-color: #00FFFF;\n        --progress-meter-color-low: #009999;\n        --progress-meter-color-medium: #009999;\n        --progress-meter-color-high: #009999;\n        --progress-meter-color-current: #009999;\n    }\n\u003c/style\u003e\n\n\u003cd3-progress-meter class=\"custom\" radius=\"100\" percentage=\"0.5\" current-text=\"10\" goal-text=\"Goal: 20\" type-text=\"Visits\" caption=\"New visits per day\"\u003e\u003c/d3-progress-meter\u003e\n```\n\n## License\n\n    This software is licensed under the Apache 2 license, quoted below.\n\n    Copyright 2011-2015 Collaborne B.V. \u003chttp://github.com/Collaborne/\u003e\n\n    Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\n    use this file except in compliance with the License. You may obtain a copy of\n    the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n    License for the specific language governing permissions and limitations under\n    the License.\n    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollaborne%2Fd3-progress-meter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcollaborne%2Fd3-progress-meter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcollaborne%2Fd3-progress-meter/lists"}