{"id":25765377,"url":"https://github.com/xerox563/chartjs","last_synced_at":"2026-04-12T12:40:51.064Z","repository":{"id":276229707,"uuid":"928647212","full_name":"Xerox563/ChartJS","owner":"Xerox563","description":"Chart.js is a lightweight, flexible, and responsive JavaScript library for creating beautiful and interactive charts 🎨📈. It supports line, bar, radar, pie, doughnut, polar area, bubble, and scatter charts with smooth animations and customization options.","archived":false,"fork":false,"pushed_at":"2025-02-07T02:03:19.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T22:18:28.190Z","etag":null,"topics":["barchart","chartjs","chartjs-2","javascript","pie-chart","reactjs"],"latest_commit_sha":null,"homepage":"","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/Xerox563.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-07T01:28:45.000Z","updated_at":"2025-02-07T02:05:58.000Z","dependencies_parsed_at":"2025-02-07T02:26:54.301Z","dependency_job_id":"dfcfa27c-7782-4a02-959b-1d31972c6db0","html_url":"https://github.com/Xerox563/ChartJS","commit_stats":null,"previous_names":["xerox563/chartjs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Xerox563/ChartJS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xerox563%2FChartJS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xerox563%2FChartJS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xerox563%2FChartJS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xerox563%2FChartJS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Xerox563","download_url":"https://codeload.github.com/Xerox563/ChartJS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xerox563%2FChartJS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265311871,"owners_count":23745161,"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":["barchart","chartjs","chartjs-2","javascript","pie-chart","reactjs"],"created_at":"2025-02-26T22:18:29.261Z","updated_at":"2026-04-12T12:40:46.046Z","avatar_url":"https://github.com/Xerox563.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📊 Chart.js - Simple Yet Powerful JavaScript Charting Library\n\nChart.js is a **lightweight, flexible, and responsive** JavaScript library for creating **beautiful and interactive charts** 🎨📈. It supports multiple chart types with smooth animations and extensive customization options.\n\n## ✨ Features\n- ✅ Easy to use \u0026 well-documented 📖\n- ✅ Highly customizable 🎨\n- ✅ Supports animations \u0026 tooltips 🎭\n- ✅ Works with React, Vue, and Vanilla JS ⚡\n- ✅ Responsive \u0026 scalable 📏\n- ✅ Supports multiple datasets 📊\n\n## 🚀 Installation\n\n### Using npm:\n```sh\nnpm install chart.js\n```\n\n### Using CDN:\n```html\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/chart.js\"\u003e\u003c/script\u003e\n```\n\n## 🔧 Usage\n\n### Basic Example\n```html\n\u003ccanvas id=\"myChart\"\u003e\u003c/canvas\u003e\n\n\u003cscript\u003e\n  const ctx = document.getElementById('myChart').getContext('2d');\n  const myChart = new Chart(ctx, {\n    type: 'bar',\n    data: {\n      labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],\n      datasets: [{\n        label: '# of Votes',\n        data: [12, 19, 3, 5, 2, 3],\n        backgroundColor: [\n          'rgba(255, 99, 132, 0.2)',\n          'rgba(54, 162, 235, 0.2)',\n          'rgba(255, 206, 86, 0.2)',\n          'rgba(75, 192, 192, 0.2)',\n          'rgba(153, 102, 255, 0.2)',\n          'rgba(255, 159, 64, 0.2)'\n        ],\n        borderColor: [\n          'rgba(255, 99, 132, 1)',\n          'rgba(54, 162, 235, 1)',\n          'rgba(255, 206, 86, 1)',\n          'rgba(75, 192, 192, 1)',\n          'rgba(153, 102, 255, 1)',\n          'rgba(255, 159, 64, 1)'\n        ],\n        borderWidth: 1\n      }]\n    },\n    options: {\n      scales: {\n        y: {\n          beginAtZero: true\n        }\n      }\n    }\n  });\n\u003c/script\u003e\n```\n\n## 📚 Documentation\nFor more details, visit the **[official documentation](https://www.chartjs.org/docs/latest/)**.\n\n## 🎨 Available Chart Types\n- 📈 Line Chart\n- 📊 Bar Chart\n- 🍩 Doughnut Chart\n- 🥧 Pie Chart\n- 📡 Radar Chart\n- 🎯 Polar Area Chart\n- ⚡ Scatter \u0026 Bubble Charts\n\n## 🌟 Contributing\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n## 📜 License\nThis project is licensed under the **MIT License**.\n\n## ⭐ Show Some Love\nIf you found this useful, **star the repository** ⭐ and share it! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxerox563%2Fchartjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxerox563%2Fchartjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxerox563%2Fchartjs/lists"}