Files
2023-02-12 17:46:05 -05:00

37 lines
607 B
JavaScript

module.exports = {
config: {
type: 'polarArea',
data: {
labels: [0, 1, 2, 3, 4, 5],
datasets: [
{
// option in dataset
data: [5, 2, 4, 7, 6, 8],
borderAlign: 'inner',
borderColor: 'black'
},
]
},
options: {
elements: {
arc: {
backgroundColor: 'transparent',
borderWidth: 1,
borderDash: [3, 3]
}
},
scales: {
r: {
display: false
}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};