Chart.js/test/fixtures/controller.bar/chart-area-clip.js
2021-02-10 08:21:39 -05:00

41 lines
658 B
JavaScript

module.exports = {
config: {
type: 'bar',
data: {
labels: [0, 1, 3, 4],
datasets: [
{
data: [5, 20, -5, -20],
borderColor: '#ff0000'
}
]
},
options: {
layout: {
padding: {
left: 0,
right: 0,
top: 50,
bottom: 50
}
},
elements: {
bar: {
backgroundColor: '#00ff00',
borderWidth: 8
}
},
scales: {
x: {display: false},
y: {display: false, min: -10, max: 10}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};