score:2

Plotting lines is just line plotting points, originally shown here

To change that plot from points to lines, first change the colorByPoint to false. Then add lineWidth: 1. That will get you lines. To remove the vertex markers, add to plotOptions.scatter:

marker: {
    enabled: false // true removes vertex markers
}

Finished example here


Related Query

More Query from same tag