var myRadarChart = new Chart(ctx, {
type: 'radar',
data: data,
options: {
responsive: true,
scales: {
reverse: false,
scaleLabel: {
display : true,
fontSize : 8,
fontColor: "#4a4a4a"
}
}
}
});