UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

16 lines (15 loc) 558 B
/// <reference types="react" /> import { FlexboxProps } from 'react-layout-kit'; import { ValueFormatter } from "../types/charts"; export interface CategoryBarProps extends FlexboxProps { colors?: string[]; markerValue?: number; showAnimation?: boolean; showLabels?: boolean; size?: number; tooltip?: string; valueFormatter?: ValueFormatter; values: number[]; } declare const CategoryBar: import("react").ForwardRefExoticComponent<CategoryBarProps & import("react").RefAttributes<HTMLDivElement>>; export default CategoryBar;