score:15

Accepted answer

In dataLabels.formatter you have access to this.point.color. So simple set useHTML: true for dataLabels, and create spans with specified colors.

score:0

the formatter function gives you a callback object, which has a color property that can be set with the color of your choice

formatter: (format) ->
  format.color = @point.color

Related Query

More Query from same tag