我正在尝试在highcharts工具提示中使用html 我用过:
tooltip:
{
useHTML: true,
formatter: function()
{
var color = "";
if (this.point.config[2]>0) color = "green";
else if (this.point.config[2]<0) color = "red";
return '<div>' +
'TIME:' + Highcharts.dateFormat('%H:%M:%S', this.x) +'<BR /> INDICE:'+ this.y + '<BR /> CHANGE:' + "<div class='"+color+"'>" + this.point.config[2] + "</div>";
+'</div>';
}
}
但它没有响应=&gt;我的工具提示是
<tspan x="12">TIME:16:15:01 INDICE:701.83 CHANGE:-0.37</tspan>
更新: 它有效,但仅限于IE。