mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-19 06:36:51 +01:00
26 lines
432 B
JavaScript
26 lines
432 B
JavaScript
module.exports = {
|
|
config: {
|
|
type: 'doughnut',
|
|
data: {
|
|
labels: ['Red'],
|
|
datasets: [
|
|
{
|
|
// option in dataset
|
|
data: [100],
|
|
borderWidth: 15,
|
|
backgroundColor: '#FF0000',
|
|
borderColor: '#000000',
|
|
borderAlign: 'center',
|
|
selfJoin: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
options: {
|
|
canvas: {
|
|
height: 256,
|
|
width: 512
|
|
}
|
|
}
|
|
};
|