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