You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
492 B

import { CSSProperties } from 'react';
import * as echarts from 'echarts';
import { BarSeriesOption } from 'echarts';
type ECOption = echarts.ComposeOption<BarSeriesOption>;
export interface BarProps {
color?: Array<string>;
category: Array<string | number>;
series: Array<any>;
loading?: boolean;
style?: CSSProperties;
options?: ECOption;
onDownCallBack?: any;
loadingType?: any;
}
export declare function ChartsBar(props: BarProps): JSX.Element;
export {};