I’d like to be able to change the color of the line chart after initial configuration. I have tried the following:
chart.config.series[selectSeries].line.color = newColor;
chart.refresh();
But the line color does not change. If I read the value contained in chart.config.series[selectSeries].line.color, I can see that the color value does get updated to a new color value, but the line color displayed on the chart never changes from the initial config value.
Thanks for the help.