From fef4f3acb669de50e57db30c81848a57532288c6 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:35:38 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/ui/chart/docs/README.md | 65 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 js/ui/chart/docs/README.md diff --git a/js/ui/chart/docs/README.md b/js/ui/chart/docs/README.md new file mode 100644 index 0000000..9592ecf --- /dev/null +++ b/js/ui/chart/docs/README.md @@ -0,0 +1,65 @@ +# Chart.js + +[![slack](https://img.shields.io/badge/slack-chartjs-blue.svg?style=flat-square&maxAge=3600)](https://chartjs-slack.herokuapp.com/) + +## Installation + +You can download the latest version of Chart.js from the [GitHub releases](https://github.com/chartjs/Chart.js/releases/latest) or use a [Chart.js CDN](https://www.jsdelivr.com/package/npm/chart.js). Detailed installation instructions can be found on the [installation](./getting-started/installation.md) page. + +## Creating a Chart + +It's easy to get started with Chart.js. All that's required is the script included in your page along with a single `` node to render the chart. + +In this example, we create a bar chart for a single dataset and render that in our page. You can see all the ways to use Chart.js in the [usage documentation](./getting-started/usage.md). +```html + + +``` + +## Contributing + +Before submitting an issue or a pull request to the project, please take a moment to look over the [contributing guidelines](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md) first. + +For support using Chart.js, please post questions with the [`chartjs` tag on Stack Overflow](https://stackoverflow.com/questions/tagged/chartjs). + +## License + +Chart.js is available under the [MIT license](https://opensource.org/licenses/MIT).