Chart.js/test/fixtures/scale.radialLinear/gridlines-disable.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

29 lines
508 B
JSON

{
"config": {
"type": "radar",
"data": {
"labels": ["A", "B", "C", "D", "E"]
},
"options": {
"responsive": false,
"scales": {
"r": {
"gridLines": {
"display": false
},
"angleLines": {
"color": "rgb(0, 0, 0)",
"lineWidth": 1
},
"pointLabels": {
"display": false
},
"ticks": {
"display": false
}
}
}
}
}
}