Skip to content

Commit

Permalink
Fix 3.x examples. Fixes d3#3010.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock authored Oct 19, 2016
1 parent 97255a5 commit c5ce7d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
```
Expand All @@ -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]);
```
Expand All @@ -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:
Expand Down

0 comments on commit c5ce7d1

Please sign in to comment.