diff --git a/CHANGES.md b/CHANGES.md index a753802d..c94f7e0f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -706,9 +706,19 @@ d3.scaleLinear().domain([10, 0]).ticks(5); // [10, 8, 6, 4, 2, 0] Non-linear quantitative scales are slightly more accurate. [Log tick formatting](https://github.com/d3/d3-scale#log_tickFormat) now assumes a default *count* of ten, not Infinity, if not specified. Log scales with domains that span many powers (such as from 1e+3 to 1e+29) now return only one [tick](https://github.com/d3/d3-scale#log_ticks) per power rather than returning *base* ticks per power. -new d3.scaleSequential. new Viridis, Inferno, Magma, Plasma interpolators. new Warm, Cool, Rainbow interpolators. new default Cubehelix interpolator +new d3.scaleSequential. new Viridis, Inferno, Magma, Plasma interpolators. -[viridis](https://github.com/d3/d3-scale#interpolateViridis)[inferno](https://github.com/d3/d3-scale#interpolateInferno)[magma](https://github.com/d3/d3-scale#interpolateMagma)[plasma](https://github.com/d3/d3-scale#interpolatePlasma)[warm](https://github.com/d3/d3-scale#interpolateWarm)[cool](https://github.com/d3/d3-scale#interpolateCool)[rainbow](https://github.com/d3/d3-scale#interpolateRainbow)[cubehelix](https://github.com/d3/d3-scale#interpolateCubehelix) +[viridis](https://github.com/d3/d3-scale#interpolateViridis) +[inferno](https://github.com/d3/d3-scale#interpolateInferno) +[magma](https://github.com/d3/d3-scale#interpolateMagma) +[plasma](https://github.com/d3/d3-scale#interpolatePlasma) + +new Warm, Cool, Rainbow interpolators. new default Cubehelix interpolator + +[warm](https://github.com/d3/d3-scale#interpolateWarm) +[cool](https://github.com/d3/d3-scale#interpolateCool) +[rainbow](https://github.com/d3/d3-scale#interpolateRainbow) +[cubehelix](https://github.com/d3/d3-scale#interpolateCubehelix) new ordinal scale API! new *ordinal*.unknown lets you control whether the domain is implicitly extended.