g-ui-web
Version:
69 lines (68 loc) • 1.49 kB
TypeScript
declare const funnelOptions: (title: any, unit: 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: {
type: string;
sort: string;
left: string;
top: number;
bottom: number;
width: string;
gap: number;
label: {
show: boolean;
position: string;
color: string;
};
labelLine: {
length: number;
lineStyle: {
width: number;
type: string;
color: string;
};
};
itemStyle: {
borderWidth: number;
};
emphasis: {
label: {
fontSize: any;
color: string;
};
};
}[];
};
export { funnelOptions };