我怎么能得到2位小数?

问题描述 投票:0回答:1

基于这个jsfiddle,

访问http://jsfiddle.net/yingchor/qq6o1ma1/5/

我想将数字显示为77.00而不是77.0007825

chart.setTitle({
    text:  percent*100 + '%'
});

谢谢你的帮助。

highcharts
1个回答
1
投票

试试以下

text:  (percent*100).toFixed(2) + '%'

http://jsfiddle.net/4neop25f/

© www.soinside.com 2019 - 2024. All rights reserved.