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

http://jsfiddle.net/vzrgt/

 tooltip: {         usehtml:true,         formatter: function() {             return '<span style="color:green;">'+this.y+'</span>';         }     }, 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -