目前使用addPoint函数更新highcharts图,某些点需要突出显示/不同颜色...我在api参考中找不到这样做的方法,可以吗?
//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 });
}