我有以下带有插件功能的图表:
this.doughnutChart = new Chart(this.doughnutCanvas.nativeElement, {
type: 'doughnut',
plugins: {
beforeDraw: function (chart) {
//I want to use data here
}
});
来自提供商的数据:
constructor(public dataService: Data)
数据可以从图表和插件所在的类中轻松访问,但我不知道如何在插件函数中注入它。
答案 0 :(得分:0)
我找到了答案,一切都在“图表”参数的深处:
chart.config.config.data.someData;