ScaleStroke
A headless component used to configure the stroke color encoding for a visualization's geometry elements.
Available configuration options determined by an aes.stroke
functional mapping.
Example
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 |