continuous()

continuous(value) Given a value from the domain, returns the corresponding value from the range. If the given value is outside the domain, and clamping is not enabled, the mapping may be extrapolated such that the returned value is outside the range. For example, to apply a position encoding: var x = d3.scaleLinear() .domain([10, 130]) .range([0, 960]); x(20); // 80 x(50); // 320 Or to apply a color encoding: var color = d3.scaleLinear() .domain([10, 100]) .range(["brown", "

d3.geoEckert6Raw

d3.geoEckert6() d3.geoEckert6Raw The Eckert VI projection.

d3.utcMilliseconds()

d3.timeMilliseconds(start, stop[, step]) d3.utcMilliseconds(start, stop[, step]) Aliases for timeMillisecond.range and utcMillisecond.range.

d3.geoTransform()

d3.geoTransform(methods) Defines an arbitrary transform using the methods defined on the specified methods object. Any undefined methods will use pass-through methods that propagate inputs to the output stream. For example, to reflect the y-dimension (see also identity.reflectY): var reflectY = d3.geoTransform({ point: function(x, y) { this.stream.point(x, -y); } }); Or to define an affine matrix transformation: function matrix(a, b, c, d, tx, ty) { return d3.geoTransform({ poin

identity.reflectX()

identity.reflectX([reflect]) If reflect is specified, sets whether or not the x-dimension is reflected (negated) in the output. If reflect is not specified, returns true if x-reflection is enabled, which defaults to false.

d3.geoWagner7Raw

d3.geoWagner7() d3.geoWagner7Raw The Wagner VII projection.

d3.geoMercatorRaw

d3.geoMercator() d3.geoMercatorRaw The spherical Mercator projection; see d3-geo.

partition.round()

partition.round([round]) If round is specified, enables or disables rounding according to the given boolean and returns this partition layout. If round is not specified, returns the current rounding state, which defaults to false.

conic.parallels()

conic.parallels([parallels]) The two standard parallels that define the map layout in conic projections.

treemap.paddingTop()

treemap.paddingTop([padding]) If padding is specified, sets the top padding to the specified number or function and returns this treemap layout. If padding is not specified, returns the current top padding function, which defaults to the constant zero. If padding is a function, it is invoked for each node with children, being passed the current node. The top padding is used to separate the top edge of a node from its children.