Skip to content

Commit ac51223

Browse files
#TDP - Extra Generatio number
Realize to Javascript
1 parent a624d89 commit ac51223

File tree

121 files changed

+37437
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+37437
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014-2022 Chart.js Contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<p align="center">
2+
<a href="https://www.chartjs.org/" target="_blank">
3+
<img src="https://www.chartjs.org/media/logo-title.svg" alt="https://www.chartjs.org/"><br/>
4+
</a>
5+
Simple yet flexible JavaScript charting for designers & developers
6+
</p>
7+
8+
<p align="center">
9+
<a href="https://www.chartjs.org/docs/latest/getting-started/installation.html"><img src="https://img.shields.io/github/release/chartjs/Chart.js.svg?style=flat-square&maxAge=600" alt="Downloads"></a>
10+
<a href="https://github.com/chartjs/Chart.js/actions?query=workflow%3ACI+branch%3Amaster"><img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/chartjs/Chart.js/ci.yml?branch=master"></a>
11+
<a href="https://coveralls.io/github/chartjs/Chart.js?branch=master"><img src="https://img.shields.io/coveralls/chartjs/Chart.js.svg?style=flat-square&maxAge=600" alt="Coverage"></a>
12+
<a href="https://github.com/chartjs/awesome"><img src="https://awesome.re/badge-flat2.svg" alt="Awesome"></a>
13+
<a href="https://join.slack.com/t/chartjs/shared_invite/zt-1lo81skkk-AZk6ollhOdrjt9GzPeOsLw"><img src="https://img.shields.io/badge/slack-chartjs-blue.svg?style=flat-square&maxAge=3600" alt="Slack"></a>
14+
</p>
15+
16+
## Documentation
17+
18+
All the links point to the new version 4 of the lib.
19+
20+
* [Introduction](https://www.chartjs.org/docs/latest/)
21+
* [Getting Started](https://www.chartjs.org/docs/latest/getting-started/index)
22+
* [General](https://www.chartjs.org/docs/latest/general/data-structures)
23+
* [Configuration](https://www.chartjs.org/docs/latest/configuration/index)
24+
* [Charts](https://www.chartjs.org/docs/latest/charts/line)
25+
* [Axes](https://www.chartjs.org/docs/latest/axes/index)
26+
* [Developers](https://www.chartjs.org/docs/latest/developers/index)
27+
* [Popular Extensions](https://github.com/chartjs/awesome)
28+
* [Samples](https://www.chartjs.org/samples/)
29+
30+
In case you are looking for an older version of the docs, you will have to specify the specific version in the url like this: [https://www.chartjs.org/docs/2.9.4/](https://www.chartjs.org/docs/2.9.4/)
31+
32+
## Contributing
33+
34+
Instructions on building and testing Chart.js can be found in [the documentation](https://www.chartjs.org/docs/master/developers/contributing.html#building-and-testing). Before submitting an issue or a pull request, please take a moment to look over the [contributing guidelines](https://www.chartjs.org/docs/master/developers/contributing) first. For support, please post questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/chart.js) with the `chart.js` tag.
35+
36+
## License
37+
38+
Chart.js is available under the [MIT license](LICENSE.md).
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const chartjs = require('../dist/chart.cjs');
2+
const {Chart, registerables} = chartjs;
3+
4+
Chart.register(...registerables);
5+
6+
module.exports = Object.assign(Chart, chartjs);
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import {Chart} from '../dist/types.js';
2+
3+
export * from '../dist/types.js';
4+
export default Chart;
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import {Chart, registerables} from '../dist/chart.js';
2+
3+
Chart.register(...registerables);
4+
5+
export * from '../dist/chart.js';
6+
export default Chart;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "chart.js-auto",
3+
"private": true,
4+
"description": "Auto registering package. Exists to support bundlers without exports support such as webpack 4.",
5+
"type": "module",
6+
"main": "./auto.cjs",
7+
"module": "./auto.js",
8+
"exports": {
9+
"types": "./auto.d.ts",
10+
"import": "./auto.js",
11+
"require": "./auto.cjs"
12+
},
13+
"types": "./auto.d.ts"
14+
}

0 commit comments

Comments
 (0)