score:0

Accepted answer

i would use the callback function and set the series you want to be a line to be a line like so:

function (chart) {
    chart.series[2].update({
        type: 'line',
        color: 'blue'
    });
}

i changed it to also be a blue line.


Related Query

More Query from same tag