我想跟踪当天的垂直时间线,但我没有在HighCharts文档中找到解决方案。
像这样:
答案 0 :(得分:39)
您正在寻找情节线。请参阅此处的文档:http://api.highcharts.com/highcharts#xAxis.plotLines。
基本格式为:
xAxis: {
plotLines: [{
color: '#FF0000', // Red
width: 2,
value: 5.5 // Position, you'll have to translate this to the values on your x axis
}]
},