具有来自Chartjs link的数据的Chart.js
答案 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;
}
}