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

ScaleY(props: XYScaleProps) => null


XYScalePropsinterface

namedescription
type?

An explicit scale imported from d3-scale used to determine relationship between data inputs and visual outputs (default: inferred from aes mapping's initial return type)

XYScale
reverse?

For continuous scales, should the scale (and relevant axis) be reversed. Note: Categorical scales have their order controlled by domain.

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 [min, max] and categorical scales should get an ordered list of categories.

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