@alicloud/cloud-charts
Version:

26 lines (25 loc) • 514 B
TypeScript
export interface IProps {
data?: any;
config?: ConfigItem;
height?: number;
style?: any;
prefix?: string;
}
interface GuideConfig {
threshold: string;
status: string;
}
export interface ConfigItem {
barConfig?: any;
size?: string;
barSize: number | string;
startColor?: string;
endColor?: string;
percentConfig?: any;
guide?: GuideConfig;
processBarConfig?: any;
processBarBackConfig?: any;
labelConfig?: any;
titleConfig?: any;
}
export {};