interval.every()

interval.every(step) Returns a filtered view of this interval representing every stepth date. The meaning of step is dependent on this interval’s parent interval as defined by the field function. For example, timeMinute.every(15) returns an interval representing every fifteen minutes, starting on the hour: :00, :15, :30, :45, etc. Note that for some intervals, the resulting dates may not be uniformly-spaced; timeDay’s parent interval is timeMonth, and thus the interval number resets at the s

interval.offset()

interval.offset(date[, step]) Returns a new date equal to date plus step intervals. If step is not specified it defaults to 1. If step is negative, then the returned date will be before the specified date; if step is zero, then a copy of the specified date is returned; if step is not an integer, it is floored. This method does not round the specified date to the interval. For example, if date is today at 5:34 PM, then timeDay.offset(date, 1) returns 5:34 PM tomorrow (even if daylight saving

d3.utcWeeks()

d3.timeWeeks(start, stop[, step]) d3.utcWeeks(start, stop[, step]) Aliases for timeWeek.range and utcWeek.range.

d3.dispatch()

d3.dispatch(types…) Creates a new dispatch for the specified event types. Each type is a string, such as "start" or "end".

d3.geoAugustRaw

d3.geoAugust() d3.geoAugustRaw August’s epicycloidal conformal projection.

d3.geoGingery()

d3.geoGingery() d3.geoGingeryRaw(rho, lobes) The U.S.-centric Gingery world projection, as inspired by Cram’s Air Age. Note: requires clipping to the sphere.

d3.polygonHull()

d3.polygonHull(points) <> Returns the convex hull of the specified points using Andrew’s monotone chain algorithm. The returned hull is represented as an array containing a subset of the input points arranged in counterclockwise order. Returns null if points has fewer than three elements.

d3.utcMonths()

d3.timeMonths(start, stop[, step]) d3.utcMonths(start, stop[, step]) Aliases for timeMonth.range and utcMonth.range.

d3.stratify()

d3.stratify() Constructs a new stratify operator with the default settings.

log.invert()

log.invert(value) See continuous.invert.