Answers for "chart js small bars too thin"

0

chart js small bars too thin

var options = {
    scales: {
        xAxes: [{
            barPercentage: 0.9
        }]
    }
}
Posted by: Guest on May-11-2021
0

chart js bars too light

/* Try setting the barThickness:'flex' in the datasets: */
datasets: [{
	label: 'Total Views',
    data: mydata,                                               
    backgroundColor:'rgba(0, 0, 0, 1)',                               
    barThickness:'flex'
}]
Posted by: Guest on May-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language