g-ui-web
Version:
60 lines (59 loc) • 1.28 kB
TypeScript
declare const lineOptions: (columns: any) => {
backgroundColor: any;
color: any;
tooltip: {
show: boolean;
trigger: string;
formatter: (params: any) => any;
};
legend: {
trigger: string;
left: string;
top: string;
show: boolean;
itemWidth: number;
itemHeight: number;
textStyle: {
fontSize: number;
lineHeight: number;
color: string;
rich: {
a: {
verticalAlign: string;
};
};
padding: number[];
};
};
grid: any;
xAxis: {
type: string;
axisTick: {
show: boolean;
alignWithLabel: boolean;
};
axisLine: {
show: boolean;
};
axisLabel: {
fontSize: any;
padding: number[];
lineHeight: number;
color: string;
};
}[];
yAxis: {
type: string;
splitLine: {
lineStyle: {
type: string;
};
};
axisLabel: {
fontSize: any;
color: string;
};
}[];
series: never[];
};
export { lineOptions };