Chart.js #6326 test03
HTML
<script src="https://cdn.jsdelivr.net/gh/nagix/nagix.github.io@chartjs/Chart.6326.js"></script>
<canvas id="chart"></canvas>
JavaScript
new Chart(document.getElementById('chart'), {
type: 'bar',
data: {
labels: ['11111111','22222222','33333333','44444444'],
datasets: [{
data: [1,2,3,4]
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});