[Official Guida and Examples](https://valor-software.com/ng2-charts/)
1. You can install ng2-charts using npm
```shell
npm install ng2-charts --save
```
2. You need to install and include `Chart.js` library in application via `html`
```
npm install chart.js --save
```
3. Embedding `Chart.js` in application `index.html` or in `.angular-cli.json`
**index.html**
```
<script src="node_modules/chart.js/src/chart.js"></script>
```
**angular-cli.json**
``` json
{
//...
"apps": [{
//...
"scripts": [
"./node_modules/chart.js/src/chart.js"
]
}
```
}