可以在jqplot中给yaxis tickLabel中的货币模式吗?

时间:2014-01-03 09:19:47

标签: jqplot

这是我的剧本

<script type="text/javascript">
    function my_ext() {
        this.cfg.axes.yaxis.tickOptions = {
            formatString : ''
        };
    }
</script>

我想格式化我轴上的数字:100,000,000.00。我如何在jqplot中执行此操作?

1 个答案:

答案 0 :(得分:2)

这是您需要的格式:

tickOptions:{formatString:"%'.2f"} 

'用于英语计算 .2是点之后的数字