In the data, there is a object property called clr
which is actually contains color information of corresponding object. I would like to draw a single line with multiple colors. However so far, I could not able to make it work.
Here is a small sample of my dataset.
{x: 11,y: 599,k: 500,clr:'blue'}, { x: 6,y: 699,k: 800,clr:'yellow'}
Here is the code sample which I had expected to work:
series: [{data: mydata,color: mydata.clr}],