-
Notifications
You must be signed in to change notification settings - Fork 2
Chart.js
tam edited this page Sep 2, 2021
·
3 revisions
Source : Chart.js
Installer chart.js dans un Angular Projet :
npm install ng2-charts chart.js
Importer le Chart dans son COMPONENT :
import Chart from 'chart.js';
Utiliser le Chart dans le fichier html du COMPONENT :
<canvas id="myChart" width="400" height="400"></canvas>
Utiliser le Chart dans le COMPONENT file :
> ngOnInit() {
> var ctx = document.getElementById("myChart");
> var myCharts = new Chart(ctx, {...});
> }