我在图表中绘制了两条静态线来指示高低范围。我可以为这条线保留标签,但我不能为静态线保留一个工具提示。有什么办法可以做到这一点吗?
yAxis: {
plotLines: [{
value: 70,
width: 1,
color: '#68AF46'
label: {
style: {
color: '#FE7246',
fontWeight: 'bold'
},
text: '70',
align: 'right',
x: -10,
y: 16
},
},
{
value: 180,
width: 1,
color: '#FE7246',
label: {
text: '180',
align: 'right',
style: {
color: '#FE7246',
fontWeight: 'bold'
},
},
}]
}
我发现没有属性可以保留情节线的工具提示。