0👍
Inside TransactionsComponent
, you initialize chart
with an array of any
but in your code, you try to assign an instance of Chart
. Declared chart
as type Chart
and it should work.
export class TransactionsComponent implements OnInit {
...
chart: Chart;
Source:stackexchange.com