Chart.js/test/fixtures/controller.bar/bar-base-value.js
2021-02-10 08:21:39 -05:00

30 lines
475 B
JavaScript

module.exports = {
config: {
type: 'bar',
data: {
labels: [0, 1, 3, 4],
datasets: [
{
data: [5, 20, 10, 11],
base: 10,
backgroundColor: '#00ff00',
borderColor: '#ff0000',
borderWidth: 2,
}
]
},
options: {
scales: {
x: {display: false},
y: {display: false}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};