是否有可能在剑道图表中的 categoryAxis 上添加注释。正如在文档中看到的那样,它应该是可能的,但即使在设置了每个选项之后,我也看不到任何注释。我找不到任何人这样做的例子。有人管理或使用过这个功能吗?
categoryAxis: {
field: "age",
justified: true,
majorGridLines: {
visible: false
},
minorGridLines: {
visible: false
},
min: 10,
max: 30,
labels: {
step: 5
},
notes: {
data: [{
value: { age: 15 },
position: "top",
icon: {
visible: true,
size: 16,
type: "circle",
background: "#585858",
border: {
color: "#FFFFFF"
}
},
line: {
length: 16
},
label: {
visible: false,
text: " "
}
}]
}
}
谢谢