我知道这有点在那里…但反正会问。我正在使用highcharts jquery脚本(http://www.highcharts.com/)生成饼图。我试图舍弃饼图中的数字结果,找不到任何文档。我被卡住了
我的数据看起来像这样:
data: [ ['Equity',3],['Cash',6] ]
而饼图输出:
33.333333333333
和
66.666666666666
我宁愿分析结果四舍五入,所以它读取和显示33和64.有没有人知道如何可以在高图中设置?
解决方法
在配置对象的tooltip选项中,在格式化函数中使用Math.round()。
tooltip: { formatter: function() { return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %'; } },