ScaleFill
A headless component used to configure the fill color encoding for a visualization's geometry elements.
Available configuration options determined by an aes.fill
functional mapping and the type of data it returns (e.g. continuous vs. categorical).
Examples
Categorical
Continuous
Ordinal
API
VisualEncodingProps
interface
name | description |
---|---|
type? | An explicit scale imported from VisualEncoding |
domain? | Used to create an explicit/fixed scale. Continuous scales should get any[] |
values? | Used to create an explicit/fixed scale. Continuous scales should get a function that maps the input domain to the output range (e.g. a d3 interpolator), and categorical scales should get an ordered list of categories (e.g. a d3 scheme). ((t: number) => string) | readonly string[] |
reverse? | For continuous scales, should the scale be reversed. Note: Categorical scales have their order controlled by boolean |