Chartjs-Type 'Chart' is missing the following properties

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;

Leave a comment