I assume that you expect, that tooltip should be displayed in on each point. All series except scatter have to be sorted and only one point for a one x-value. So you can use scatter series with defined lineWidth.
series: [{
type:'scatter',
lineWidth:2,
data: Data
}]
3
solved Highcharts has incorrect chart [closed]