{
type: 'polarArea',
data: {
labels: labels,
datasets: [{
backgroundColor: Utils.color(0),
data: Utils.numbers({
count: DATA_COUNT,
min: 0,
max: 100
})
}, {
backgroundColor: Utils.color(1),
data: Utils.numbers({
count: DATA_COUNT,
min: 0,
max: 100
})
}, {
backgroundColor: Utils.color(2),
data: Utils.numbers({
count: DATA_COUNT,
min: 0,
max: 100
})
}]
},
options: {
plugins: {
datalabels: {
anchor: 'end',
backgroundColor: function(context) {
return context.dataset.backgroundColor;
},
borderColor: 'white',
borderRadius: 25,
borderWidth: 2,
color: 'white',
font: {
weight: 'bold'
},
formatter: Math.round,
padding: 6
}
},
aspectRatio: 4 / 3,
layout: {
padding: 16
},
elements: {
line: {
fill: false
},
point: {
hoverRadius: 7,
radius: 5
}
},
}
}