From c5ce7d1ef93b077cdf7cb704b712242955717993 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Wed, 19 Oct 2016 14:43:25 -0700 Subject: [PATCH] Fix 3.x examples. Fixes #3010. --- CHANGES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 18acb5f0..34ca449a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -763,7 +763,7 @@ x.domain(); // [0, 1] The *ordinal*.rangeBands and *ordinal*.rangeRoundBands methods have been replaced with a new subclass of ordinal scale: [band scales](https://github.com/d3/d3-scale#band-scales). The following code in 3.x: ```js -var x = d3.scaleOrdinal() +var x = d3.scale.ordinal() .domain(["a", "b", "c"]) .rangeBands([0, width]); ``` @@ -781,7 +781,7 @@ The new [*band*.padding](https://github.com/d3/d3-scale#band_padding), [*band*.p Similarly, the *ordinal*.rangePoints and *ordinal*.rangeRoundPoints methods have been replaced with a new subclass of ordinal scale: [point scales](https://github.com/d3/d3-scale#point-scales). The following code in 3.x: ```js -var x = d3.scaleOrdinal() +var x = d3.scale.ordinal() .domain(["a", "b", "c"]) .rangePoints([0, width]); ``` @@ -806,7 +806,7 @@ The [ordinal scale constructor](https://github.com/d3/d3-scale#ordinal-scales) n The following code in 3.x: ```js -var color = d3.scaleCategory10(); +var color = d3.scale.category10(); ``` Is equivalent to this in 4.0: