[Chartjs]-Unable to set width and height on canvas in chart js

1👍

You have to put it in a container div element and set the width and height on the container like it is mentioned in the docs.

<div class="chart-container" style="position: relative; height:40vh; width:80vw">
    <canvas id="chart"></canvas>
</div>

Leave a comment