[Chartjs]-Chart.js unable to create chart

1👍

You have to add a canvas element as the base of the chart. Change the html to:

<div class="chart-container">
   <canvas id="chart"></canvas>
</div>

1👍

Instead of div please use canvas like below.

<canvas id="chart"></canvas>

Leave a comment