Chartjs-Chart.js – Why the chart cannot rendered in a child component but in the father component can?

1πŸ‘

βœ…

I add this styles in child component and i resolved my problem.

:host {
    display: block;
    width: 100%;
    height: 100%;
}

That’s all.

Leave a comment