Possible Duplicate:
Highstock/Highchart cannot set Individual Point color
Currently use the addPoint function to update the highcharts graph, certain points need to be highlighted/different color… I can’t find a method to do this in the api reference, is it possible?
//exampleA - Series arrayId
//exampleB - Point value
//exampleC when not null would has extra tooltip info, these points need to be a different color.
addPoint: function(exampleA, exampleB, exampleC)
{
mcjs.chart.series[exampleA].addPoint({ y: exampleB, exampleC });
}
Yes, it is possible.
You have the change the
fillColorattribute inside theMarkerinside theDataAttribute.The
colorattribute insidedatadid not worked for me.If you want the a green dot, you can look at this example I made.