1

我正在使用 nvd3.js multiBarHorizo​​ntalChart http://nvd3.org/ghpages/multiBarHorizo ​​ntal.html 我正在尝试将值格式化为整数并去掉小数。

 chart.yAxis
     .tickFormat(d3.format('d'));

  chart.xAxis
     .tickFormat(d3.format('d'));

http://jsfiddle.net/petran/4DAwU/

4

1 回答 1

1

您将格式说明符放在错误的位置-您想格式化我假设的条形之后显示的值。这样做使用

chart.valueFormat(d3.format('d'));
于 2013-08-29T19:09:02.567 回答