highstock - Is there a way to change flags' tooltip font color? -
i tried <span style='color:green;'>test</span>
, doesn't work. flags tooltip text in black color. line point tooltip, it's working fine.
thanks lot!
you should set usehtml true.
http://api.highcharts.com/highcharts#tooltip.usehtml
tooltip: { usehtml:true, formatter: function() { return '<span style="color:green;">'+this.y+'</span>'; } },
Comments
Post a Comment