I have a tooltip format like this:
tooltip: {
formatter: function() {
return Highcharts.dateFormat('%A, %b %e, %Y',new Date(this.x)) +'<br/>'+ this.series.name + ': ' + '<b>'+ this.y +'</b>';
}
};
How can I add color to my series.name because now they all black. In my chart after drawing, different series.name has different colors.
Thanks
use this:
See the working fiddle here
If your tooltip is shared then use following code
See the demo of different color in tooltip for shared tooltip here