How to change the gridlines color on radar? I already tried this options but it doesnt work
scales: {
gridLines: {
color: "white"
},
}
@wahyuhandy do you have a fiddle for this? gridLines.color should do it. However, your top level key should be scale not scales for a radar chart
@etimberg Thanks, It solved now. by changing the top level key to scale
This works for the circular gridlines, but not the lines that start in the center and move outward towards the label. Those lines are still gray in the above example. Any idea how you change the color of those label gridlines which are currently gray? Thanks
@bhellman1 see the JSFiddle posted in #3710, it should be scale.angleLines.color
scale: { angleLines: { color: 'red' } } for example.
Most helpful comment
@bhellman1 see the JSFiddle posted in #3710, it should be
scale.angleLines.colorscale: { angleLines: { color: 'red' } }for example.