{"id":13426532,"url":"https://github.com/britecharts/britecharts","last_synced_at":"2025-05-14T00:10:41.655Z","repository":{"id":32337071,"uuid":"35912494","full_name":"britecharts/britecharts","owner":"britecharts","description":"Composable Charting Library based on reusable D3.js components.","archived":false,"fork":false,"pushed_at":"2023-09-05T09:22:01.000Z","size":57277,"stargazers_count":3733,"open_issues_count":7,"forks_count":219,"subscribers_count":163,"default_branch":"master","last_synced_at":"2025-04-18T00:12:23.085Z","etag":null,"topics":["britecharts","chart","d3","data-visualization","es2015","interactive-visualizations","javascript","reusable-charting-library","svg"],"latest_commit_sha":null,"homepage":"http://britecharts.github.io/britecharts/","language":"JavaScript","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/britecharts.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":"britecharts","open_collective":"britechartsorg","custom":"https://www.buymeacoffee.com/britecharts"}},"created_at":"2015-05-19T22:42:39.000Z","updated_at":"2025-04-13T16:31:35.000Z","dependencies_parsed_at":"2023-09-26T09:47:12.167Z","dependency_job_id":null,"html_url":"https://github.com/britecharts/britecharts","commit_stats":{"total_commits":901,"total_committers":74,"mean_commits":"12.175675675675675","dds":0.5049944506104329,"last_synced_commit":"8b1b2acb4b496ca70c12469850af304dae67bdaa"},"previous_names":[],"tags_count":136,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/britecharts%2Fbritecharts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/britecharts%2Fbritecharts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/britecharts%2Fbritecharts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/britecharts%2Fbritecharts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/britecharts","download_url":"https://codeload.github.com/britecharts/britecharts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250832212,"owners_count":21494543,"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":["britecharts","chart","d3","data-visualization","es2015","interactive-visualizations","javascript","reusable-charting-library","svg"],"created_at":"2024-07-31T00:01:37.179Z","updated_at":"2025-05-14T00:10:41.637Z","avatar_url":"https://github.com/britecharts.png","language":"JavaScript","readme":"# Britecharts\n\n\u003e Britecharts is a client-side **reusable Charting Library** based on [D3.js v5][1] that offers easy and intuitive use of charts and components that can be composed together to create amazing visualizations.\n\n[![Build Status](https://travis-ci.org/britecharts/britecharts.svg?branch=master)](https://travis-ci.org/britecharts/britecharts)\n[![npm version](https://badge.fury.io/js/britecharts.svg)](https://badge.fury.io/js/britecharts)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/britecharts/britecharts/blob/master/.github/CONTRIBUTING.md)\n[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors)\n[![Twitter Follow](https://img.shields.io/twitter/follow/britecharts.svg?style=social\u0026label=Follow)](https://twitter.com/Britecharts/followers)\n\n| [![Bar Chart][barchartimg]][barchartdemo]                       | [![Line Chart][linechartimg]][linechartdemo]                            | [![Donut Chart][donutchartimg]][donutchartdemo]                 |\n| --------------------------------------------------------------- | ----------------------------------------------------------------------- | --------------------------------------------------------------- |\n| [![Stacked Bar Chart][stackedbarchartimg]][stackedbarchartdemo] | [![Stacked Area Chart][stackedareachartlargeimg]][stackedareachartdemo] | [![Grouped Bar Chart][groupedbarchartimg]][groupedbarchartdemo] |\n| [![Sparkline Chart][sparklinechartimg]][sparklinechartdemo]     | [![Legend Chart][legendchartimg]][donutchartdemo]                       | [![Brush Chart][brushchartimg]][brushchartdemo]                 |\n\nBritecharts [components][32] have been written in ES2016 with a Test Driven methodology, so they are **fully tested**, and we are committed to keeping them that way.\n\n## Key Features\n\n-   Reusability\n-   Composability\n-   Great design\n\n## Usage\n\nThe typical use of Britecharts involves creating a chart using its simple API, then rendering it on a container which has previously had data applied to it. The code will look like this:\n\n    barChart\n        .width(500)\n        .height(300);\n\n    barContainer.datum(dataset).call(barChart);\n\n## API\n\nAll the components expose some **common API methods** like width, height, and margin. Additionally, each chart or component can expose specific methods you can find in the documentation:\n\n-   [API][25], [Demo][linechartdemo] Line Chart\n-   [API][22], [Demo][barchartdemo] Bar Chart\n-   [API][21], [Demo][donutchartdemo] Donut Chart\n-   [API][38], [Demo][stackedbarchartdemo] Stacked Bar Chart\n-   [API][40], [Demo][groupedbarchartdemo] Grouped Bar Chart\n-   [API][43], [Demo][bulletchartdemo] Bullet Chart\n-   [API][23], [Demo][brushchartdemo] Brush Chart\n-   [API][41], [Demo][scatterplotdemo] Scatter Plot\n-   [API][29], [Demo][sparklinechartdemo] Sparkline Chart\n-   [API][30], [Demo][stackedareachartdemo] Stacked Area Chart\n-   [API][28], [Demo][stepchartdemo] Step Chart\n-   [API][26], [Demo][barchartdemo] Mini Tooltip\n-   [API][27], [Demo][linechartdemo] Tooltip\n-   [API][24], [Demo][donutchartdemo] Legend\n\n## Installation\n\nBritecharts components are distributed in **UMD modules**, each one exposing a D3.js component written with the [Reusable API pattern][3]. To use any of the Britecharts modules, you will need to require the chart in your JS file using AMD/CommonJS modules or adding a script tag with the `src` pointing to the file. You would also need to load the [d3-selection][37] submodule to select the chart container.\n\n```\n   npm install britecharts d3-selection\n```\n\nYou can also load Britecharts from our [CDN][cdnhome] as we do in this [demo][cdndemo] page or play around in our [JSBin][jsbinsandbox] and [CodePen][codependemos] demo projects.\n\nThey also provide some minimal CSS styling, that can be loaded independently or as a bundle. Check our [Styling Britecharts tutorial][stylingbritecharts] to see more options.\n\n## See Also\n\n-   [Documentation Homepage][31]\n-   [Getting Started Guide][gettingstarted]\n-   [Tutorials][tutorialsindex]\n-   [How To Guides][howtoindex]\n-   [About Britecharts][topicsindex]\n-   [Contributing Guide][35]\n-   [Github Repo][33]\n-   [Bar Chart Tutorial][screencast][Video]\n-   [Release Notes][13]\n\n## Community Roadmap\nThis project is in active development. We want your input about what is important, for that, add your votes using the 👍 reaction:\n* [Top Feature Requests](https://github.com/britecharts/britecharts/issues?q=is%3Aissue+is%3Aclosed+sort%3Areactions-%2B1-desc+label%3Atype%3Afeature+)\n* [Documentation Requests](https://github.com/britecharts/britecharts/issues?q=is%3Aissue+is%3Aclosed+sort%3Areactions-%2B1-desc+label%3Atype%3Adocumentation+)\n* [Top Bugs](https://github.com/britecharts/britecharts/issues?q=is%3Aissue+is%3Aclosed+sort%3Areactions-%2B1-desc+label%3Atype%3Abug+)\n\nTo give your feedback, you can open a new issue. You can also find us in the [D3.js slack group][d3slack], in the **#britecharts** channel. If you want to help, you can check the [contributing][35] guide.\n\nIf you work with Angular, check out [ngx-britecharts][angularwrapper] and their [demos][angularwrapperdemos]. We are also preparing a wrapper for React, and we will be talking about it on our [twitter][twitter].\n\n## Acknowledgments\n\n[Sun Dai][sunsdribble] designs Britecharts, and two books inspired the code, [Developing a D3.js Edge][19] and [Mastering D3.js][20]. It also leveraged a significant number of examples and articles from the [D3.js][1] community overall.\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://dalerasrorov.github.io/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/9118852?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDaler Asrorov\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=DalerAsrorov\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=DalerAsrorov\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-DalerAsrorov\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#maintenance-DalerAsrorov\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/pulls?q=is%3Apr+reviewed-by%3ADalerAsrorov\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=DalerAsrorov\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/ryanwholey\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/8100360?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRyan Wholey\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=ryanwholey\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=ryanwholey\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#ideas-ryanwholey\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#maintenance-ryanwholey\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/pulls?q=is%3Apr+reviewed-by%3Aryanwholey\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=ryanwholey\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/jchen85\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/14088460?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ejchen85\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=jchen85\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#ideas-jchen85\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#maintenance-jchen85\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/pulls?q=is%3Apr+reviewed-by%3Ajchen85\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=jchen85\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/ImADrafter\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/44379989?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMarcos Gómez\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=ImADrafter\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/ajdani\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/16606530?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eajdani\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/issues?q=author%3Aajdani\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=ajdani\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#maintenance-ajdani\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/shayh\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/366321?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eshayh\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=shayh\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/jayeclark\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/84106309?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJay Clark\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=jayeclark\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/bratter\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10243813?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBrendan Ratter\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=bratter\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#ideas-bratter\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/rajeshmr82\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10022651?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRajesh\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=rajeshmr82\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/alexisbcc\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/38666191?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexis Crespo\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=alexisbcc\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/gagoar\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/226559?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGago\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/britecharts/britecharts/commits?author=gagoar\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#content-gagoar\" title=\"Content\"\u003e🖋\u003c/a\u003e \u003ca href=\"#ideas-gagoar\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e \u003ca href=\"#infra-gagoar\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"#maintenance-gagoar\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/pulls?q=is%3Apr+reviewed-by%3Agagoar\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e \u003ca href=\"#tool-gagoar\" title=\"Tools\"\u003e🔧\u003c/a\u003e \u003ca href=\"https://github.com/britecharts/britecharts/commits?author=gagoar\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://allcontributors.org) specification.\nContributions of any kind are welcome!\n\n## License\n\nCopyright 2019 Eventbrite\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n[https://www.apache.org/licenses/LICENSE-2.0][14]\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nRead more in the [license document][15]\n\n[1]: https://d3js.org/\n[2]: https://webpack.github.io/\n[3]: https://bost.ocks.org/mike/chart/\n[12]: https://nodejs.org/en/download/\n[13]: https://github.com/britecharts/britecharts/releases\n[14]: https://www.apache.org/licenses/LICENSE-2.0\n[15]: https://github.com/britecharts/britecharts/blob/master/LICENSE.md\n[16]: https://github.com/britecharts/britecharts/issues\n[17]: https://github.com/babel/babel\n[19]: https://bleedingedgepress.com/our-books/developing-a-d3-js-edge/\n[20]: https://www.packtpub.com/web-development/mastering-d3js\n[21]: https://britecharts.github.io/britecharts/module-Donut.html\n[22]: https://britecharts.github.io/britecharts/module-Bar.html\n[23]: https://britecharts.github.io/britecharts/module-Brush.html\n[24]: https://britecharts.github.io/britecharts/module-Legend.html\n[25]: https://britecharts.github.io/britecharts/module-Line.html\n[26]: https://britecharts.github.io/britecharts/module-Mini-tooltip.html\n[27]: https://britecharts.github.io/britecharts/module-Tooltip.html\n[28]: https://britecharts.github.io/britecharts/module-Step.html\n[29]: https://britecharts.github.io/britecharts/module-Sparkline.html\n[30]: https://britecharts.github.io/britecharts/module-Stacked-area.html\n[31]: https://britecharts.github.io/britecharts/\n[32]: https://britecharts.github.io/britecharts/tutorial-kitchen-sink.html\n[33]: https://github.com/britecharts/britecharts\n[gettingstarted]: https://britecharts.github.io/britecharts/getting-started.html\n[35]: https://github.com/britecharts/britecharts/blob/master/.github/CONTRIBUTING.md\n[36]: https://britecharts.github.io/britecharts/img/logo-stripes-small.png\n[37]: https://github.com/d3/d3-selection\n[38]: https://britecharts.github.io/britecharts/module-Stacked-bar.html\n[40]: https://britecharts.github.io/britecharts/module-Grouped-bar.html\n[41]: https://britecharts.github.io/britecharts/module-Scatter-plot.html\n[42]: https://scrimba.com/casts/cZWm2tb\n[43]: https://britecharts.github.io/britecharts/module-Bullet.html\n[cdndemo]: https://britecharts.github.io/britecharts/cdn.html\n[cdnhome]: https://cdn.jsdelivr.net/npm/britecharts/dist/\n[jsbinsandbox]: https://jsbin.com/wativun/3/edit?html,js,output\n[codepensandbox]: https://codepen.io/Golodhros/pen/PprGeP?editors=1010\n[codependemos]: https://codepen.io/Britecharts/pens/forked/\n[screencast]: https://scrimba.com/casts/cZWm2tb\n[angularwrapper]: https://github.com/colapdev/ngx-britecharts\n[angularwrapperdemos]: https://colapdev.github.io/ngx-britecharts/\n[twitter]: https://twitter.com/britecharts\n[sunsdribble]: https://dribbble.com/sundai\n[d3slack]: https://d3js.slack.com/\n[proposals]: https://github.com/britecharts/britecharts/labels/Type%3A%20Feature\n[release3project]: https://github.com/britecharts/britecharts/projects/2\n[barchartdemo]: https://britecharts.github.io/britecharts/tutorial-bar.html \"Check the Demo\"\n[linechartdemo]: https://britecharts.github.io/britecharts/tutorial-line.html \"Check the Demo\"\n[donutchartdemo]: https://britecharts.github.io/britecharts/tutorial-donut.html \"Check the Demo\"\n[scatterplotdemo]: https://britecharts.github.io/britecharts/tutorial-scatter-plot.html \"Check the Demo\"\n[sparklinechartdemo]: https://britecharts.github.io/britecharts/tutorial-sparkline.html \"Check the Demo\"\n[stackedareachartdemo]: https://britecharts.github.io/britecharts/tutorial-stacked-area.html \"Check the Demo\"\n[stepchartdemo]: https://britecharts.github.io/britecharts/tutorial-step.html \"Check the Demo\"\n[brushchartdemo]: https://britecharts.github.io/britecharts/tutorial-brush.html \"Check the Demo\"\n[bulletchartdemo]: https://britecharts.github.io/britecharts/tutorial-bullet.html \"Check the Demo\"\n[stackedbarchartdemo]: https://britecharts.github.io/britecharts/tutorial-stacked-bar.html \"Check the Demo\"\n[groupedbarchartdemo]: https://britecharts.github.io/britecharts/tutorial-grouped-bar.html \"Check the Demo\"\n[stackedareademo]: https://britecharts.github.io/britecharts-react/#stacked-area-chart \"Check the Demo\"\n[stackedareaimg]: https://raw.githubusercontent.com/britecharts/britecharts-react/master/src/docs/images/thumbnails/stacked-area.png\n[barchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/bar-chart.png\n[linechartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/line-chart.png\n[donutchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/donut-chart.png\n[sparklinechartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/sparkline-chart.png\n[stackedareachartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/stacked-area-chart.png\n[stackedareachartlargeimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/stacked-area-chart-large.png\n[stepchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/step-chart.png\n[brushchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/brush-chart.png\n[stackedbarchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/stacked-bar-chart.png\n[groupedbarchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/grouped-bar-chart.png\n[legendchartimg]: https://raw.githubusercontent.com/britecharts/britecharts/master/src/doc/images/thumbnails/legend-chart.png\n[tutorialsindex]: http://britecharts.github.io/britecharts/tutorials-index.html\n[howtoindex]: http://britecharts.github.io/britecharts/how-to-index.html\n[topicsindex]: http://britecharts.github.io/britecharts/topics-index.html\n[stylingbritecharts]: http://britecharts.github.io/britecharts/styling-charts.html\n","funding_links":["https://github.com/sponsors/britecharts","https://opencollective.com/britechartsorg","https://www.buymeacoffee.com/britecharts"],"categories":["JavaScript","HarmonyOS","Charts"],"sub_categories":["Windows Manager"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbritecharts%2Fbritecharts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbritecharts%2Fbritecharts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbritecharts%2Fbritecharts/lists"}