ionic nvd3 如何在 Y 轴上为千位设置逗号分隔符

ionic nvd3 how to have comma separator for thousands on Y axis

请看我生成的图 http://imgur.com/a/Kds5f

在 Y 轴上,我想用逗号分隔千位。

例如:

100000应该是100000,80000应该是80000

Here is my code snippet,参考$scope.options


更新:

我用 tickFormat 试过了

                  yAxis: {
                    axisLabel: 'ktoe',
                    axisLabelDistanc: 40,
                    tickFormat: d3.format(',')
                  },

但它以逗号出现,但对于 100,000,1 会像这样消失

http://imgur.com/a/Vu2y9

格式化刻度

chart.yAxis.tickFormat(function (d) {
    var format = d3.format(",");
    return '£ ' + format(d); // If you want add '£' symbol
});

向左调整图表 margin : {left: 40} 以便能够在图表上看到 yAxis

希望对您有所帮助