manyBody.distanceMin()

manyBody.distanceMin([distance]) If distance is specified, sets the minimum distance between nodes over which this force is considered. If distance is not specified, returns the current minimum distance, which defaults to 1. A minimum distance establishes an upper bound on the strength of the force between two nearby nodes, avoiding instability. In particular, it avoids an infinitely-strong force if two nodes are exactly coincident; in this case, the direction of the force is random.

manyBody.distanceMax()

manyBody.distanceMax([distance]) If distance is specified, sets the maximum distance between nodes over which this force is considered. If distance is not specified, returns the current maximum distance, which defaults to infinity. Specifying a finite maximum distance improves performance and produces a more localized layout.

loximuthal.parallel()

loximuthal.parallel([parallel]) Defaults to 40°.

log.ticks()

log.ticks([count]) Like continuous.ticks, but customized for a log scale. If the base is an integer, the returned ticks are uniformly spaced within each integer power of base; otherwise, one tick per power of base is returned. The returned ticks are guaranteed to be within the extent of the domain. If the orders of magnitude in the domain is greater than count, then at most one tick per power is returned. Otherwise, the tick values are unfiltered, but note that you can use log.tickFormat to

log.tickFormat()

log.tickFormat([count[, specifier]]) Like continuous.tickFormat, but customized for a log scale. The specified count typically has the same value as the count that is used to generate the tick values. If there are too many ticks, the formatter may return the empty string for some of the tick labels; however, note that the ticks are still shown. To disable filtering, specify a count of Infinity. When specifying a count, you may also provide a format specifier or format function. For example,

log.rangeRound()

log.rangeRound([range]) See continuous.rangeRound.

log.range()

log.range([range]) See continuous.range.

log.nice()

log.nice() Like continuous.nice, except extends the domain to integer powers of base. For example, for a domain of [0.201479…, 0.996679…], and base 10, the nice domain is [0.1, 1]. If the domain has more than two values, nicing the domain only affects the first and last value.

log.invert()

log.invert(value) See continuous.invert.

log.interpolate()

log.interpolate(interpolate) See continuous.interpolate.