I am using HighCharts for a line graph and i am attemping to change the line color for each series. I did find this example here but the data is hard coded. My data is pulled fr
The color can be configured as part of the series. Try something like this:
series: [ { name: 'series I', color: '#ffffff', data: [17.4, 16.1, 19.45, 24.15, 28.44, 33.15, 37.2, 41.25, 43.3] } ];