g-ui-web
Version:
78 lines (77 loc) • 1.64 kB
TypeScript
declare const scatterOptions: () => {
backgroundColor: any;
color: any;
tooltip: {
show: boolean;
trigger: string;
borderWidth: number;
};
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;
splitLine: {
lineStyle: {
type: string;
};
};
axisTick: {
show: boolean;
};
axisLine: {
show: boolean;
onZero: boolean;
lineStyle: {
color: string;
width: number;
};
};
axisLabel: {
fontSize: any;
color: string;
};
}[];
yAxis: {
type: string;
splitLine: {
lineStyle: {
type: string;
};
};
axisTick: {
show: boolean;
};
axisLine: {
show: boolean;
onZero: boolean;
lineStyle: {
color: string;
width: number;
};
};
axisLabel: {
fontSize: any;
color: string;
};
}[];
series: never[];
};
export { scatterOptions };