When I try to pass data from parent to child component. I\'m getting undefined message in the console. Data is in the form of array.
parent.component.html
With the help of Input() we can pass data
Child.html
>'>
chart.component.ts
@Input() userDetails: any = []; ngOnInit() { console.log(this.userDetails); // as per angular Lifecycle use the ngOnInit for initializing input values }