https://github.com/mbostock/d3/wiki/Quantitative-Scales#wiki-log_ticks
If you were to drop ticks from log scales, you wouldn't be able to see
the log distortion. So, instead you can drop the labels from the ticks
rather than the ticks themselves, using the tickFormat method.
If you use the d3.svg.axis component, the axis.ticks method sets the
arguments that are passed to both the scale.ticks method and the
scale.tickFormat method, so you should get the desired behavior
automatically.
Mike
The number of ticks is not configurable for log scales, see:
https://github.com/mbostock/d3/issues/72
However, you can filter the ticks using the scale's tickFormat, which
takes an optional "count" argument to limit the number of labels. This
is explained in the issue above, and also in the API documentation:
https://github.com/mbostock/d3/wiki/Quantitative-Scales#wiki-log_ticks
--
Jason Davies, http://www.jasondavies.com/