* d3.min, d3.max and d3.extent for computing the extent from data.
* setting a scale's domain (e.g., x.domain(d3.extent(numbers)))
* redrawing an axis after updating the scale (e.g.,
svg.select(".x.axis").call(axis))
There are some examples of these here:
http://bost.ocks.org/mike/path/
Mike
To do a smooth transition on an axis, you update your scale's domain,
and then you start a transition:
svg.select(".x.axis").transition().call(xAxis);
Mike
--
You received this message because you are subscribed to the Google Groups "d3-js" group.
To unsubscribe from this group and stop receiving emails from it, send an email to d3-js+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.