1
我已經使用高圖表創建了一個圖表。 工具提示在FF和IE中正常工作,但chorme文本不在框架中。highcharts工具提示文本對齊
我嘗試使用HTML
tooltip:
{
//Tried this also
/* formatter: function()
{
return '' + Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y;
}, */
useHTML: true,
formatter: function() {
var html="<div style='width:140px;text-align:center; direction:ltr'>"+
Highcharts.dateFormat('%H:%M:%S', this.x) +'; '+ this.y+
"</div>";
return html;
}
},
你升級我的[例子](http://jsfiddle.net/3bQne/80/)t o重現問題? –