UNPKG

react-plot

Version:

Library of React components to render SVG 2D plots.

9 lines 379 B
import type { BaseSeriesProps, CSSFuncProps } from '../../types.js'; export interface FunctionSeriesProps extends BaseSeriesProps { getY: (x: number) => number; lineStyle?: CSSFuncProps<{ id: string; }>; } export declare function FunctionSeries(props: FunctionSeriesProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FunctionSeries.d.ts.map