Chart.js无法读取属性' 0' 0未定义 - 条形图

时间:2016-07-29 07:21:12

标签: angular

我使用chart.js打印条形图和饼图。这是我的代码:

this.barChartData = [];
 this.barChartLabels = [];
  this.analytics.forEach(data => {
     debugger;
      var splittedlabel = data.label.substring(0, 7)+ '..';
      this.barChartData.push(data.total);
      this.barChartLabels.push(splittedlabel);
  })
 alert(this.barChartData+ " " +this.barChartLabels);

我在警报中获得正确的输出,但在控制台中出现以下错误: enter image description here

此外,输出图表已被打破。

enter image description here

请提供帮助,因为同一文件可以正常使用静态数据。

0 个答案:

没有答案