2012-06-21 84 views
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; 
    } 

}, 
+0

你升級我的[例子](http://jsfiddle.net/3bQne/80/)t o重現問題? –

回答

2

你到底需要什麼?

例如,這創建了值的共享工具提示對齊到右:

tooltip: { 
     shared: true, 
     useHTML: true, 
     formatter: function() 
      { 
      tooltip_html = Highcharts.dateFormat('%H:%M:%S', this.x * 1000); 
      tooltip_html += "<table>"; 

      this.points.forEach(function(entry) 
       { 
       tooltip_html += '<tr><td style="font-weight:bold; color:'+ entry.series.color +'">'+ entry.series.name +':</td><td style="text-align: right"> '+entry.y+'</td></tr>'; 
       }); 

      tooltip_html += "</table>"; 

      return tooltip_html; 
      } 
    }, 

DEMO:從Highcharts.com http://jsfiddle.net/babca/4NuTx/1/

3

答案:

tooltip: { 
     shared: true, 
     useHTML: true, 
     headerFormat: '<small>{point.key}</small><table>', 
     pointFormat: '<tr><td style="color: {series.color}">{series.name}: </td>' + 
     '<td style="text-align: right"><b>{point.y} EUR</b></td></tr>', 
     footerFormat: '</table>', 
     valueDecimals: 2 
    }, 

Fiddle Here

莫非