UNPKG

react-gifted-charts

Version:

ReactJS counterpart of react-native-gifted-charts. An intuitive charting library for Bar, Line, Area, Pie, Donut, Stacked Bar, Population Pyramid and Radar charts in React

11 lines (10 loc) 440 B
import { RefObject } from 'react'; import { RenderBarsPropsTypeForWeb } from 'gifted-charts-core/dist/BarChart/types'; interface IRenderBarsPropsTypes extends RenderBarsPropsTypeForWeb { yTranslate: number; scrollToBarRef: RefObject<HTMLDivElement>; scrollToIndex?: number; stepHeight: number; } declare const RenderBars: (props: IRenderBarsPropsTypes) => import("react/jsx-runtime").JSX.Element; export default RenderBars;