如何更改雷达图表的步骤
$scope.radar = {
labels: chart.lastMonthMood.labels,
data: [
chart.lastMonthMood.labelsCount
],
options: {
scale: {
reverse: true,
ticks: {
beginAtZero: true,
min:0,
stepSize: 1,
}
}
}
};
打印输出的屏幕
我想我不明白你的问题。如果要更改步骤尺寸,请更改字段:选项对象中的stepSize
?