Stripped personal data from development repository
Samo Penic
2019-02-20 83c3f647c35477564b77cbc5b36d37d793d5442a
commit | author | age
83c3f6 1 # Chart.js
SP 2
3 [![travis](https://img.shields.io/travis/chartjs/Chart.js.svg?style=flat-square&maxAge=60)](https://travis-ci.org/chartjs/Chart.js) [![coveralls](https://img.shields.io/coveralls/chartjs/Chart.js.svg?style=flat-square&maxAge=600)](https://coveralls.io/github/chartjs/Chart.js?branch=master) [![codeclimate](https://img.shields.io/codeclimate/maintainability/chartjs/Chart.js.svg?style=flat-square&maxAge=600)](https://codeclimate.com/github/chartjs/Chart.js) [![slack](https://img.shields.io/badge/slack-chartjs-blue.svg?style=flat-square&maxAge=3600)](https://chartjs-slack.herokuapp.com/)
4
5 *Simple HTML5 Charts using the canvas element* [chartjs.org](http://www.chartjs.org)
6
7 ## Installation
8
9 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://cdnjs.com/libraries/Chart.js).
10
11 To install via npm:
12
13 ```bash
14 npm install chart.js --save
15 ```
16
17 To install via bower:
18 ```bash
19 bower install chart.js --save
20 ```
21
22 ### Selecting the Correct Build
23
24 Chart.js provides two different builds for you to choose: `Stand-Alone Build`, `Bundled Build`.
25
26 #### Stand-Alone Build
27 Files:
28 * `dist/Chart.js`
29 * `dist/Chart.min.js`
30
31 The stand-alone build includes Chart.js as well as the color parsing library. If this version is used, you are required to include [Moment.js](http://momentjs.com/) before Chart.js for the functionality of the time axis.
32
33 #### Bundled Build
34 Files:
35 * `dist/Chart.bundle.js`
36 * `dist/Chart.bundle.min.js`
37
38 The bundled build includes Moment.js in a single file. You should use this version if you require time axes and want to include a single file. You should not use this build if your application already included Moment.js. Otherwise, Moment.js will be included twice which results in increasing page load time and possible version compatibility issues. The Moment.js version in the bundled build is private to Chart.js so if you want to use Moment.js yourself, it's better to use Chart.js (non bundled) and import Moment.js manually.
39
40 ## Documentation
41
42 You can find documentation at [www.chartjs.org/docs](http://www.chartjs.org/docs). The markdown files that build the site are available under `/docs`. Previous version documentation is available at [www.chartjs.org/docs/latest/developers/#previous-versions](http://www.chartjs.org/docs/latest/developers/#previous-versions).
43
44 ## Contributing
45
46 Before submitting an issue or a pull request, 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](http://stackoverflow.com/questions/tagged/chartjs).
47
48 ## Building
49 Instructions on building and testing Chart.js can be found in [the documentation](https://github.com/chartjs/Chart.js/blob/master/docs/developers/contributing.md#building-and-testing).
50
51 ## Thanks
52 - [BrowserStack](https://browserstack.com) for allowing our team to test on thousands of browsers.
53 - [@n8agrin](https://twitter.com/n8agrin) for the Twitter handle donation.
54
55 ## License
56
57 Chart.js is available under the [MIT license](http://opensource.org/licenses/MIT).