cl-react-graph
Version:
React D3 Charts
15 lines (14 loc) • 398 B
TypeScript
/// <reference types="react" />
import { AnyChartPoint, ChartPoint, LineProps } from "../LineChart";
import { Axes } from "../utils/types";
type Props<T extends AnyChartPoint = ChartPoint> = {
label?: string;
line: LineProps;
width: number;
left: number;
height: number;
axis: Axes;
data: T[];
};
export declare const AreaFill: (props: Props) => JSX.Element;
export {};