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.
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 {};
|
|
|