Chart.js/test/fixtures/controller.bar/minBarLength/horizontal-pos.js
Jukka Kurkela 021561072b
Disable all plugins when options.plugins = false (#8098)
Disabling all plugins when options.plugins = false
2020-11-23 17:58:03 -05:00

34 lines
420 B
JavaScript

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