我有以下代码显示图表上的线条。我无法找到如何格式化 x 轴。我想显示类似于 y 轴的每千个间隔(0,1000,2000,3000,4000 等)。我正在使用剑道用户界面。
function createChart() {
$("#chart").kendoChart({
title: {
text: "Units sold"
},
dataSource: {
data: stats
},
categoryAxis: {
labels: {
step: 1000,
format: "n0"
},
},
series: [{
type: "area",
line: {
style: "smooth"
},
field: "x",
categoryField: "y"
}],
});
}
这是我的小提琴: