Chart.js/test/fixtures/plugin.filler/fill-radar-dataset-order.js
2020-02-21 18:58:14 -05:00

29 lines
505 B
JavaScript

module.exports = {
config: {
type: 'radar',
data: {
labels: ['English', 'Maths', 'Physics', 'Chemistry', 'Biology', 'History'],
datasets: [
{
order: 1,
borderColor: '#D50000',
backgroundColor: 'rgba(245, 205, 121,0.5)',
data: [65, 75, 70, 80, 60, 80]
},
{
order: 0,
backgroundColor: 'rgba(0, 168, 255,1)',
data: [54, 65, 60, 70, 70, 75]
}
]
},
options: {
legend: false,
title: false,
scale: {
display: false
}
}
}
};