Reputation: 275
I am using Angular, I have installed the chart.js
but the chart is not displaying in the page.
Here is my code :
dasboard.component.html
<canvas id="myChart" width="400" height="400"></canvas>
dashboard.component.ts
import { Component, OnInit } from '@angular/core';
import { Chart } from 'chart.js'
@Component({
selector: 'dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
ngOnInit() {
var myChart = new Chart('myChart', {
type: 'bar',
data: {
labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
}
}
when I do
console.log('hello');
in dashboard.component.t
s, it is printing in console, but the graph is not displaying how can I solve this?
Upvotes: 3
Views: 1770
Reputation: 26150
Your code is fine, simply include the canvas
into a div
and it will display.
<div>
<canvas id="myChart" width="400" height="400"></canvas>
</div>
Please have a look at the following StackBlitz
Upvotes: 3