Highchart b饼图百分比显示、小数位数控制

this.percentage 为百分比
函数构造及参数
Highcharts.numberFormat (Number number, [Number decimals], [String decimalPoint], [String thousandsSep])
        参数列表
  • number   需要格式化的数字
  • decimals  小数保留位数,最后一位是四舍五入,默认为 0(可选参数)
  • decimalPoint   小数点符,默认是“.”(可选参数)
  • thousandsSep 千位符,默认是“,” (可选参数)
返回值类型:String
详见API 文档 :  http://www.hcharts.cn/api/index.php#Highcharts.numberFormat
另一种方式:
format:"{point.name} {this.percentage:.2f}"
  {this.percentage:.2f} 即 {数值:.精度f}
 

你可能感兴趣的:(highchart,b饼图百分比显示)