Chart.js/test/fixtures/plugin.filler/fill-radar-value.json
Jukka Kurkela ffe4ab14dc
Remove options.scale, in favor of options.scales.r (#8393)
Remove options.scale, in favor of options.scales.r
2021-02-06 16:19:21 -05:00

47 lines
863 B
JSON

{
"config": {
"type": "radar",
"data": {
"labels": ["0", "1", "2", "3", "4", "5", "6", "7", "8"],
"datasets": [
{
"backgroundColor": "rgba(0, 0, 192, 0.25)",
"data": [0, -4, 2, 4, 2, 1, -1, 1, 2]
}
]
},
"options": {
"responsive": false,
"spanGaps": false,
"scales": {
"r": {
"display": false,
"gridLines": {
"circular": true
}
}
},
"elements": {
"point": {
"radius": 0
},
"line": {
"borderColor": "transparent",
"fill": { "value": 3 }
}
},
"plugins": {
"legend": false,
"title": false,
"tooltip": false
}
}
},
"options": {
"canvas": {
"height": 256,
"width": 256
}
}
}