Customizing the colors of individual series in HighCharts

前端 未结 3 1110
旧时难觅i
旧时难觅i 2021-02-14 01:08

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

3条回答
  •  忘掉有多难
    2021-02-14 01:46

    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]
        }
    ];
    

提交回复
热议问题