@cisdi/rect-chart
Version:
rect chart for ui-engine
17 lines (16 loc) • 527 B
TypeScript
/// <reference types="react" />
import { ChartProp } from '@cisdi/common-chart';
export interface SliderProps {
show?: boolean;
height?: number;
fillerStyle?: Record<string, any>;
backgroundStyle?: Record<string, any>;
textStyle?: Record<string, any>;
handleStyle?: Record<string, any>;
backgroundChart?: Record<string, any>;
}
export interface RectChartProps extends ChartProp {
slider?: SliderProps;
}
declare const RectChart: (props: RectChartProps) => JSX.Element;
export default RectChart;