我对Chart.js
有疑问。从图片中,您可以看到该图表隐藏了带有注释的水平线
annotation: {
annotations: [{
drawTime: 'afterDraw',
type: 'line',
mode: 'horizontal',
scaleID: 'y-axis-0',
value: chartData.test,
borderColor: 'black',
borderWidth: 1,
label: {
content: "Test",
enabled: true,
position: "left"
}
}]
}
所以问题是如何告诉Chart.js
将yAxis max设置为此值,我也不想计算最大值,因为我有很多数据,这只是示例