chart js small bars too thin

Solutions on MaxInterview for chart js small bars too thin by the best coders in the world

showing results for - "chart js small bars too thin"
Lou
11 Jul 2020
1var options = {
2    scales: {
3        xAxes: [{
4            barPercentage: 0.9
5        }]
6    }
7}
Isaac
12 Mar 2019
1/* Try setting the barThickness:'flex' in the datasets: */
2datasets: [{
3	label: 'Total Views',
4    data: mydata,                                               
5    backgroundColor:'rgba(0, 0, 0, 1)',                               
6    barThickness:'flex'
7}]