From 3d3ac083e42cf6b9493d2f6ad6ca7c4119cd9d74 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Mon, 2 Sep 2019 09:24:47 -0700 Subject: [PATCH] Update README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c1221b..39c4d25 100644 --- a/README.md +++ b/README.md @@ -391,7 +391,7 @@ Constructs a new identity scale with the specified [domain](#continuous_domain) #### Radial Scales -Radial scales are a variant of [linear scales](#linear-scales) where the range is internally squared, so that an input value corresponds linearly to the squared output value. These scales are useful when you want the input value to correspond to the area of a graphical mark, and the mark is specified by radius, as in a radial bar chart. Radial scales do not support [interpolate](#continuous_interpolate). +Radial scales are a variant of [linear scales](#linear-scales) where the range is internally squared so that an input value corresponds linearly to the squared output value. These scales are useful when you want the input value to correspond to the area of a graphical mark and the mark is specified by radius, as in a radial bar chart. Radial scales do not support [interpolate](#continuous_interpolate). # d3.scaleRadial([[domain, ]range]) ยท [Source](https://github.com/d3/d3-scale/blob/master/src/radial.js), [Examples](https://observablehq.com/@d3/radial-stacked-bar-chart)