d3.timeFormatLocale()

d3.timeFormatLocale(definition) Returns a locale object for the specified definition with locale.format, locale.parse, locale.utcFormat, locale.utcParse methods. The definition must include the following properties: dateTime - the date and time (%c) format specifier (e.g., "%a %b %e %X %Y"). date - the date (%x) format specifier (e.g., "%m/%d/%Y"). time - the time (%X) format specifier (e.g., "%H:%M:%S"). periods - the A.M. and P.M. equivalents (e.g., ["AM", "PM"]). days - the full names

d3.timeFormatDefaultLocale()

d3.timeFormatDefaultLocale(definition) Equivalent to d3.timeFormatLocale, except it also redefines d3.timeFormat, d3.timeParse, d3.utcFormat and d3.utcParse to the new locale’s locale.format, locale.parse, locale.utcFormat and locale.utcParse. If you do not set a default locale, it defaults to U.S. English.

d3.timeFormat()

d3.timeFormat(specifier) An alias for locale.format on the default locale.

d3.utcDays()

d3.timeDays(start, stop[, step]) d3.utcDays(start, stop[, step]) Aliases for timeDay.range and utcDay.range.

d3.utcDay

d3.timeDay d3.utcDay Days (e.g., February 7, 2012 at 12:00 AM); typically 24 hours. Days in local time may range from 23 to 25 hours due to daylight saving.

d3.tile()

d3.tile() Constructs a layout for determining which 256x256 quadtree tiles to display in a rectangular viewport. var tile = d3.tile();

d3.tickStep()

d3.tickStep(start, stop, count) Returns the difference between adjacent tick values if the same arguments were passed to ticks: a nicely-rounded value that is a power of ten multiplied by 1, 2 or 5. Note that due to the limited precision of IEEE 754 floating point, the returned value may not be exact decimals; use d3-format to format numbers for human consumption.

d3.ticks()

d3.ticks(start, stop, count) Returns an array of approximately count + 1 uniformly-spaced, nicely-rounded values between start and stop (inclusive). Each value is a power of ten multiplied by 1, 2 or 5. See also tickStep and linear.ticks. Note that due to the limited precision of IEEE 754 floating point, the returned values may not be exact decimals; use d3-format to format numbers for human consumption. Ticks are inclusive in the sense that they may include the specified start and stop value

d3.thresholdSturges()

d3.thresholdSturges(values) Returns the number of bins according to Sturges’ formula; the input values must be numbers.

d3.thresholdScott()

d3.thresholdScott(values, min, max) Returns the number of bins according to Scott’s normal reference rule; the input values must be numbers.