g-ui-web
Version:
78 lines (77 loc) • 1.78 kB
TypeScript
declare const funnelOptions: (title: any, unit: any, chartType: any, funnelWith: any) => {
backgroundColor: any;
color: any;
tooltip: {
show: boolean;
trigger: string;
formatter: (params: any) => any;
};
legend: {
trigger: string;
orient: string;
left: string;
show: boolean;
itemWidth: number;
itemHeight: number;
textStyle: {
fontSize: number;
color: string;
lineHeight: number;
rich: {
a: {
verticalAlign: string;
};
};
padding: number[];
};
};
xAxis: {
show: boolean;
type: string;
};
yAxis: {
show: boolean;
type: string;
};
series: {
gap: number;
label: {
show: boolean;
position: string;
color: string;
fontSize: any;
formatter: (params: any) => any;
rich: {
value: {
fontSize: number;
fontWeight: number;
};
};
};
labelLine: {
length: number;
lineStyle: {
width: number;
type: string;
color: string;
};
};
itemStyle: {
borderWidth: number;
};
emphasis: {
label: {
fontSize: any;
color: string;
};
};
minSize?: string | undefined;
type: string;
sort: string;
left: string;
top: number;
bottom: number;
width: any;
}[];
};
export { funnelOptions };