UNPKG

@graphique/graphique

Version:

A data visualization system for React based on the Grammar of Graphics.

11 lines (8 loc) 251 B
import { atom } from "jotai" import { XYScaleProps } from "./types" interface YScaleProps extends XYScaleProps { isFixed?: boolean } export const yScaleState = atom<YScaleProps>({ numTicks: height => (height && height < 500 ? 4 : undefined), })