如何将Chart.js与Angular 7与数据库中的数据集成

时间:2019-03-19 16:21:23

标签: angular typescript chart.js line ngx-charts

具有来自Chartjs link的数据的Chart.js

code screen images

1 个答案:

答案 0 :(得分:0)

嘿,我发现这篇文章很有帮助:http://tobiasahlin.com/blog/chartjs-charts-to-get-you-started/

它帮助我非常了解ChartJS。

只需按照示例中提到的格式对API数据进行格式化,就可以了。

interface A {
}

class Impl2 implements A {
}

class Impl1 implements A {
}

class Repository {

  static getImplForA(): A {
    if (condition) {
      return Impl1;
    }

    return Impl2;
  }
}