score:2

Accepted answer

Yes, this is available in the series.update() method. You would do something like:

chart.series[0].update({
    color: color ? null : Highcharts.getOptions().colors[1]
});

Where series[0] is the index of the series you want to update.


Related Query

More Query from same tag