2013-07-24 69 views
3

格式化浮點數當鼠標移動到系列,highcharts顯示所有的號碼,如本圖片:在Highcharts

enter image description here

我想讓浮點數都有2個位數後點點。我在網上搜索,然後像......

plotOptions: { 
     series: { 
      dataLabels: { 
       formatter: function() { 
        return '<b>' + this.point.name + '</b>: ' + this.percentage.toFixed(2) + ' %'; 
       } 
      } 
     } 
    } 

但它不起作用。

回答

1

你可以這樣做。

formatter: function() { 
    let perc = this.percentage.toFixed(2) 
    return `<span>${perc}%</span>` 
}