Chartjs-Chart JS horizontal bar chart width of bars and the chart

0๐Ÿ‘

Set the height of the chart canvas element, either by specifying it directly in the canvas tag or by specifying max-height in CSS.

Relevant links:

0๐Ÿ‘

I managed to fix it, using a suggestion from another post. In the following code snippet, I added the line that set the canvas height:-

            $("#dvChart5").html("");
            var canvas = document.createElement('canvas');
            canvas.height = 100;
            $("#dvChart5")[0].appendChild(canvas);

Leave a comment