mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
19 lines
303 B
JavaScript
19 lines
303 B
JavaScript
module.exports = {
|
|
config: {
|
|
type: 'pie',
|
|
data: {
|
|
labels: ['Red', 'Blue', 'Yellow'],
|
|
datasets: [{
|
|
data: [12, 4, 6],
|
|
backgroundColor: ['red', 'blue', 'yellow']
|
|
}]
|
|
},
|
|
options: {
|
|
offset: 40,
|
|
layout: {
|
|
padding: 50
|
|
}
|
|
}
|
|
}
|
|
};
|