UNPKG

@apptane/react-ui-charts

Version:
8 lines (7 loc) 505 B
import { DomainValue } from "../common/Types.js"; import { ChartGridProps } from "./ChartGrid.types.js"; export declare type ChartGridPropsEx<T extends DomainValue> = ChartGridProps<T> & { ticks: T[]; tickPosition: (value: T) => number | number[] | undefined; }; export declare function ChartGrid<T extends DomainValue>({ theme, colorMode, orientation, left, top, width, height, tickPosition, ticks, }: ChartGridPropsEx<T>): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;