3 回答
TA貢獻1856條經驗 獲得超5個贊
您可以通過將這些道具添加到圖表的比例規范中輕松做到這一點:
scale: {
gridLines: {
color: 'red'
},
angleLines: {
color: 'red'
}
},
視覺輸出將是您要求的輸出

TA貢獻1155條經驗 獲得超0個贊
options: {
scales: {
r: {
max: 100,
min: 0,
ticks: {
stepSize: 20,
textStrokeColor: 'rgb(54, 162, 235)',
color: 'rgba(240, 240, 240, 0.5)',
backdropColor: 'rgb(47, 56, 62)'
},
angleLines: {
color: 'rgba(240, 240, 240,0.5)',
},
grid: {
color: "lightgreen",
},
},
},

添加回答
舉報
