ScaleY
A headless component used to configure a visualization's y axis and the vertical position of geometry elements in 2D space.
Available configuration options determined by an aes.y
functional mapping and the type of data it returns (e.g. continuous vs. categorical).
Examples
Categorical
Continuous
API
XYScaleProps
interface
name | description |
---|---|
type? | An explicit scale imported from XYScale |
reverse? | For continuous scales, should the scale (and relevant axis) be reversed. Note: Categorical scales have their order controlled by boolean |
format? | Function used to format axis tick labels (props: FormatOptions) => string |
numTicks? | Approximate number of ticks to use in axis (default: derived from parent container's width or height) ((widthOrHeight: number) => number | undefined) | number |
domain? | Used to create an explicit/fixed scale. Continuous scales should get unknown[] |
highlightOnFocus? | For categorical scales, should the focused data highlight the associated axis tick label boolean |
focusedTicks? | For categorical scales, the tick labels that should be explicitly/programmatically focused string[] |
className? | This is passed to the top-level axis element, and can be used to control styling string |