Changing series color in highcharts dynamically

前端 未结 3 1862
后悔当初
后悔当初 2020-12-17 15:36

I have been able to change the stroke color on a spline graph, but the points and the legend do not change color until after I hide and show the series by clicking it and th

3条回答
  •  遥遥无期
    2020-12-17 15:59

    it's simple, you can use this code

    chart.series[0].options.color = "#008800";
    chart.series[0].update(chart.series[0].options);
    

提交回复
热议问题