You can create a vertical line on highlighted value in Highcharts. This might give a better visual when you have multiple lines. You could also use "shared: true" option in your tooltip to display all line data in a single tooltip. This is only usable in datetime type charts, otherwise the vertical line is usable as full column highlight.
Source code viewer
var config = { tooltip: { shared: true, crosshairs: true, }, };Programming Language: Javascript