Jukka Kurkela cd9d5289a4
Add borderJoinStyle option for arc elements (#9877)
* Add borderJoinStyle option for arc elements
* docs + types
* Consistently enumerate the possible choices
2021-12-05 08:56:37 -05:00

27 lines
453 B
JavaScript

module.exports = {
config: {
type: 'doughnut',
data: {
labels: [0, 1, 2, 3, 4, 5],
datasets: [
{
data: [0, 2, 4, null, 6, 8],
backgroundColor: 'transparent',
borderColor: '#000',
borderJoinStyle: 'round',
borderWidth: 10,
spacing: 50,
},
]
},
options: {
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};