g-ui-web
Version:
42 lines (41 loc) • 896 B
TypeScript
declare const radarOptions: (list: any) => {
backgroundColor: any;
color: any;
tooltip: {
show: boolean;
trigger: string;
formatter: (params: any) => string;
};
legend: {
trigger: string;
left: string;
top: string;
bottom: number;
show: boolean;
itemWidth: number;
itemHeight: number;
textStyle: {
fontSize: number;
lineHeight: number;
color: string;
rich: {
a: {
verticalAlign: string;
};
};
padding: number[];
};
};
grid: any;
radar: {
center: string[];
radius: number;
indicator: never[];
};
series: {
type: string;
symbolSize: any;
data: never[];
}[];
};
export { radarOptions };