在我的angular2应用程序中,我从firebase获取数据并将其显示在图表中(ng2-googlechart),一切正常,但是当firebase中的数据发生变化时,图表不会自动更改。 如何动态更新图表的值。
<div class="chart"
chart
[data]="data"
[options]="options"
[labels]="mylabels"
[columnTypes]="columnTypes"
[chartType]="chartType">
</div>
item.service.ts
getItemById(id){
this.items=this.af.database.list('items/'+id);
return this.items;
}
item.component.ts
getItemById(id){
this._itemService.getVoteByIdSurvey(id).subscribe(
(items)=>{
this.votes=items
}
);
}
提前致谢。