How to print numbers without comma in axis bar?

pen: [ http://codepen.io/ustvarno/pen/bZLbpA?editors=0110 ]
i want to print this numbers of years without comma, how to achieve this?

You’ll want the axis.tickFormat() function (link).

1 Like

ty,
.tickFormat(d3.format('d'))
works

1 Like