UNPKG

@graphique/geom-label

Version:

For creating labels based on data in Graphique

11 lines (8 loc) 199 B
import { Aes, DataValue } from '@graphique/graphique' export enum Entrance { DATA = 'data', BOTTOM = 'bottom', } export type GeomAes<Datum> = Omit<Aes<Datum>, 'x'> & { x?: DataValue<Datum> }