nvd3.js d3 tickformat无效

时间:2013-08-29 19:01:55

标签: d3.js nvd3.js

我正在使用nvd3.js multiBarHorizo​​ntalChart http://nvd3.org/ghpages/multiBarHorizontal.html 我试图将值格式化为整数并删除小数。

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

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

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

1 个答案:

答案 0 :(得分:1)

您将格式说明符放在错误的位置 - 您希望格式化我设定的条形后显示的值。使用

执行此操作
chart.valueFormat(d3.format('d'));