Chart.js/test/fixtures/controller.bar/minBarLength/horizontal.js

34 lines
438 B
JavaScript
Raw Normal View History

module.exports = {
config: {
type: 'bar',
data: {
labels: [0, 1, 2, 3, 4],
datasets: [
{
data: [0, -0.01, 0.01, 30, -30],
backgroundColor: '#00ff00',
borderWidth: 0,
minBarLength: 20
}
]
},
options: {
indexAxis: 'y',
scales: {
x: {
ticks: {
display: false
}
},
y: {display: false}
}
}
},
options: {
canvas: {
height: 512,
width: 512
}
}
};