如何更改雷达图的步长
$scope.radar = {
labels: chart.lastMonthMood.labels,
data: [
chart.lastMonthMood.labelsCount
],
options: {
scale: {
reverse: true,
ticks: {
beginAtZero: true,
min:0,
stepSize: 1,
}
}
}
};