Chart.js/test/fixtures/controller.doughnut/doughnut-offset.js
2021-05-18 19:24:57 -04:00

19 lines
308 B
JavaScript

module.exports = {
config: {
type: 'doughnut',
data: {
labels: ['Red', 'Blue', 'Yellow'],
datasets: [{
data: [12, 4, 6],
backgroundColor: ['red', 'blue', 'yellow']
}]
},
options: {
offset: 40,
layout: {
padding: 50
}
}
}
};