Ответ 1
Вы ищете линию сюжета. Смотрите документацию здесь: 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
}]
},