UNPKG

react-uplot

Version:

ReactJS wrapper for the uPlot charting library.

12 lines (11 loc) 409 B
import React from "react"; import uPlot from "uplot"; import "uplot/dist/uPlot.min.css"; export declare const UPlot: React.MemoExoticComponent<(props: { divRef?: React.RefObject<HTMLDivElement>; chartRef?: React.MutableRefObject<uPlot | null>; options: uPlot.Options; data: uPlot.AlignedData; placeLegendBelowContainer?: boolean; ignoreDoubleClick?: boolean; }) => React.JSX.Element>;