2015-09-17 78 views

回答

1

如果您刪除的文字和數字之間的空間,它會正常工作

像代替

<th>Pears 222</th> 

使用

<th>Pears222</th> 

但呈三角fiddle正在即使字符串和數字之間的空間,所以它可能是與版本相關的問題

0

以下行添加到您的代碼:

itemDelimiter: '</th>'

完整的代碼是:

$(function() { 
    $('#container').highcharts({ 
     data: { 
      table: 'datatable', 
      itemDelimiter:'</th>' 
     }, 
     chart: { 
      type: 'column' 
     }, 
     title: { 
      text: 'Data extracted from a HTML table in the page' 
     }, 
     yAxis: { 
      allowDecimals: false, 
      title: { 
       text: 'Units' 
      } 
     }, 
     tooltip: { 
      formatter: function() { 
       return '<b>' + this.series.name + '</b><br/>' + 
        this.point.y + ' ' + this.point.name.toLowerCase(); 
      } 
     } 
    }); 
});