[Chartjs]-Charts.js how to fix the height with more than 50 horizontal bars

1๐Ÿ‘

โœ…

I finally fix it, I used this solution:

https://jsfiddle.net/jbfLuo53/

The solution was to control de height size in the js file and set it using Jquery.

0๐Ÿ‘

You can put your canvas in a div and make div scrollable.
Then increase the height of canvas.

For make scrollable:

<div style="overflow-y: scroll; height:400px;">

Leave a comment