scale-hue
Discrete evenly-spaced HCL hue colour/fill scale.
Usage
scale-hue(
..args,
)Parameters
| Parameter | Default | Description |
|---|---|---|
..args |
Named arguments forwarded to the colour/fill scale. |
Keys accepted by ..args:
hue:(start, end)angle pair sweeping the HCL hue circle; default(15deg, 375deg).chroma: HCL chroma, a number; default100.luminance: HCL luminance, a number; default65.name: Axis or legend title, as a string or content;none(default) falls back to the mapped column name.limits: Array of level names selecting which levels appear and in which order;none(default) keeps the trained levels. A level name must be a string, because a discrete scale reads a bare number as a position rather than as a level, so quote a numeric level as"1".oob: Handling of rows whose level falls outsidelimits:"drop"(default) removes them;"squish"censors too, since clamping has no meaning on levels.labels: Array of labels in level order, a function of the level returning a string or content, orauto(default) to print the level itself.
Returns
Deferred scale spec consumed by scales.
Examples
Colour groups with evenly-spaced HCL hues.
#let d = ((x: 1, y: 1, g: "a"), (x: 2, y: 2, g: "b"), (x: 3, y: 3, g: "c"))
#plot(
data: d,
mapping: aes(x: "x", y: "y", colour: "g"),
layers: (geom-point(size: 3pt),),
scales: scales(colour: scale-hue()),
width: 10cm,
height: 6cm,
)