UNPKG

@apptane/react-ui-charts

Version:
9 lines (8 loc) 255 B
import { ScaleLinear } from "d3-scale"; import { ChartGridProps } from "./ChartGrid.types.js"; export interface ChartLinearGridProps extends ChartGridProps<number> { /** * Scale function. */ scale: ScaleLinear<number, number>; }