In dataset
, you can see:
backgroundColor: "rgba(128,128,128,0.2)", /** bgcolor inside the grid */
borderColor: "#4099FF", /** color of the link */
pointBackgroundColor: "#4099FF", /** color of circle point */
pointBorderColor: "#fff", /** color of circle's border */
pointHoverBackgroundColor: "#4099FF"
pointHoverBorderColor: "#4099FF"
If you want to custom the style of label color, lines of radar:
Set the value in options
, and follow this syntax:
'key' : { attribute : 'value'; }
example :
angleLines:{
color: '#aaa',
},
gridLines:{
color: '#aaa',
},
pointLabels: {
fontSize: 14,
fontColor: '#fff',
},
In this example, it will represent programming skills level with Chart.js 's Radar Chart with custom style.
You can find out the
result here.