charts - jQuery HighCharts colour by column -


I know that option is a colorpoint, which I have enabled in my chart, but how do I paint one color for every single Specify in my data?

Do I have to add every bit of data with its color? if so, how? I am playing for ages and can not get it right!

If you know which data point you want to change color, Some can change the color of the data point on the fly:

  yourchart.series [yourSeriesIndex] .data [yourDataPointIndex] .update ({color: "# 123456" // your color value})    

Comments