From 6d91abfbab2d2292d77495d256ab1e64515b91b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Rivi=C3=A8re?= Date: Tue, 9 May 2023 15:17:20 -0700 Subject: [PATCH] add a link to plot/features/scales#interval --- docs/features/scales.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/scales.md b/docs/features/scales.md index 239b2971b5..25f3b6305b 100644 --- a/docs/features/scales.md +++ b/docs/features/scales.md @@ -604,7 +604,7 @@ Plot.plot({ [Mark transforms](./transforms.md) typically consume values *before* they are passed through scales (_e.g._, when binning). In this case the mark transforms will see the values prior to the scale transform as input, and the scale transform will apply to the *output* of the mark transform. ::: -The **interval** scale option sets an ordinal scale’s **domain** to the start of every interval within the extent of the data. In addition, it implicitly sets the **transform** of the scale to *interval*.floor, rounding values down to the start of each interval. For example, below we generate a time-series bar chart; when an **interval** is specified, missing days are visible. +The **interval** scale option sets an ordinal scale’s **domain** to the start of every interval within the extent of the data. In addition, it implicitly sets the **transform** of the scale to *interval*.floor, rounding values down to the start of each interval. For example, below we generate a time-series bar chart; when an **interval** is specified, missing days are visible.