在我的angular项目中,我将数据保存在firestore集合中,并希望在Chart.js的“Line Chart”中显示它们。我如何实现这一点?下面是从硬编码的值创建折线图的组件文件。
createChart(){
this.chart = new Chart("MyChart", {
type: 'line', //this denotes tha type of chart
data: {// values on X-Axis
labels: ['2022-05-10', '2022-05-11', '2022-05-12'],
datasets: [
{
label: "Weight",
data: ['100','95', '80'],
backgroundColor: 'blue'
},
]
},
options: {
aspectRatio:2.5
}
});
}
1条答案
按热度按时间lnxxn5zx1#