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