UNPKG

@graphique/geom-point

Version:

For points, scatterplots, and bubbles

16 lines (12 loc) 264 B
import { Aes, DataValue } from '@graphique/graphique' export enum Entrance { DATA = 'data', BOTTOM = 'bottom', } export enum SizeLabelDirection { L = 'left', R = 'right', } export type GeomAes<Datum> = Omit<Aes<Datum>, 'x'> & { x?: DataValue<Datum> }