如何更改雷达图的步长
$scope.radar = {
labels: chart.lastMonthMood.labels,
data: [
chart.lastMonthMood.labelsCount
],
options: {
scale: {
reverse: true,
ticks: {
beginAtZero: true,
min:0,
stepSize: 1,
}
}
}
};
答案 0 :(得分:0)
我想我不明白你的问题。如果要更改stepSize,请在选项对象中更改字段:stepSize
?