@touchvue/plugin 1.0.0-beta.1 → 1.0.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/echarts-bar/index.d.ts +7 -0
- package/components/echarts-bar/src/echarts-bar.d.ts +222 -0
- package/components/echarts-bar/src/echarts-bar.vue.d.ts +334 -0
- package/components/echarts-bar/src/instance.d.ts +3 -0
- package/components/echarts-map/index.d.ts +7 -0
- package/components/echarts-map/src/echarts-map.d.ts +226 -0
- package/components/echarts-map/src/echarts-map.vue.d.ts +471 -0
- package/components/echarts-map/src/instance.d.ts +3 -0
- package/components/echarts-pie/index.d.ts +7 -0
- package/components/echarts-pie/src/echarts-pie.d.ts +99 -0
- package/components/echarts-pie/src/echarts-pie.vue.d.ts +194 -0
- package/components/echarts-pie/src/instance.d.ts +3 -0
- package/components/echarts-radar/index.d.ts +7 -0
- package/components/echarts-radar/src/echarts-radar.d.ts +221 -0
- package/components/echarts-radar/src/echarts-radar.vue.d.ts +294 -0
- package/components/echarts-radar/src/instance.d.ts +1 -0
- package/components/editor/index.d.ts +8 -0
- package/components/editor/src/editor.d.ts +99 -0
- package/components/editor/src/editor.vue.d.ts +163 -0
- package/components/editor/src/instance.d.ts +3 -0
- package/components/editor/src/plugins.d.ts +2 -0
- package/components/editor/src/toolbar.d.ts +2 -0
- package/components/step-tree/index.d.ts +8 -0
- package/components/step-tree/src/instance.d.ts +3 -0
- package/components/step-tree/src/step-tree-item.vue.d.ts +56 -0
- package/components/step-tree/src/step-tree.d.ts +78 -0
- package/components/step-tree/src/step-tree.vue.d.ts +38 -0
- package/components/watermark/index.d.ts +8 -0
- package/components/watermark/src/instance.d.ts +3 -0
- package/components/watermark/src/watermark.d.ts +34 -0
- package/components/watermark/src/watermark.vue.d.ts +69 -0
- package/index.cjs +12 -0
- package/index.d.ts +19 -0
- package/index.mjs +30848 -0
- package/package.json +15 -4
- package/style/style.css +1 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface PieDatum {
|
|
4
|
+
name: string;
|
|
5
|
+
value: number;
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}
|
|
8
|
+
export interface EchartsPieProps {
|
|
9
|
+
data?: PieDatum[];
|
|
10
|
+
size?: string | number;
|
|
11
|
+
color?: string | (string | [string, string, number])[];
|
|
12
|
+
fontSize?: string | number;
|
|
13
|
+
tipFontSize?: string | number;
|
|
14
|
+
barSize?: string | number;
|
|
15
|
+
borderColor?: string;
|
|
16
|
+
borderWidth?: string | number;
|
|
17
|
+
layout?: string;
|
|
18
|
+
borderRadius?: string | number;
|
|
19
|
+
startAngle?: string | number;
|
|
20
|
+
endAngle?: string | number;
|
|
21
|
+
value?: string | number;
|
|
22
|
+
label?: string | number;
|
|
23
|
+
gap?: string | number;
|
|
24
|
+
emphasisScale?: boolean;
|
|
25
|
+
emphasisScaleSize?: string | number;
|
|
26
|
+
}
|
|
27
|
+
export declare const echartsPieProps: {
|
|
28
|
+
data: {
|
|
29
|
+
type: PropType<PieDatum[]>;
|
|
30
|
+
default: () => any[];
|
|
31
|
+
};
|
|
32
|
+
size: {
|
|
33
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
34
|
+
default: number;
|
|
35
|
+
};
|
|
36
|
+
color: {
|
|
37
|
+
type: PropType<string | (string | [string, string, number])[]>;
|
|
38
|
+
default: () => string[];
|
|
39
|
+
};
|
|
40
|
+
fontSize: {
|
|
41
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
tipFontSize: {
|
|
45
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
46
|
+
default: number;
|
|
47
|
+
};
|
|
48
|
+
barSize: {
|
|
49
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
50
|
+
default: number;
|
|
51
|
+
};
|
|
52
|
+
borderColor: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
borderWidth: {
|
|
57
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
58
|
+
default: number;
|
|
59
|
+
};
|
|
60
|
+
layout: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
borderRadius: {
|
|
65
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
66
|
+
default: number;
|
|
67
|
+
};
|
|
68
|
+
startAngle: {
|
|
69
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
70
|
+
default: number;
|
|
71
|
+
};
|
|
72
|
+
endAngle: {
|
|
73
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
76
|
+
value: {
|
|
77
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
label: {
|
|
81
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
gap: {
|
|
85
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
emphasisScale: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
emphasisScaleSize: {
|
|
93
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
94
|
+
default: number;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
export declare const echartsPieEmits: {
|
|
98
|
+
'item-click': (_: any) => boolean;
|
|
99
|
+
};
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
background?(_: {}): any;
|
|
4
|
+
title?(_: {}): any;
|
|
5
|
+
legend?(_: {
|
|
6
|
+
legendData: any;
|
|
7
|
+
}): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
10
|
+
data: {
|
|
11
|
+
type: ArrayConstructor;
|
|
12
|
+
default: () => any[];
|
|
13
|
+
};
|
|
14
|
+
size: {
|
|
15
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
color: {
|
|
19
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
20
|
+
default: () => string[];
|
|
21
|
+
};
|
|
22
|
+
fontSize: {
|
|
23
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
24
|
+
default: number;
|
|
25
|
+
};
|
|
26
|
+
tipFontSize: {
|
|
27
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
28
|
+
default: number;
|
|
29
|
+
};
|
|
30
|
+
barSize: {
|
|
31
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
32
|
+
default: number;
|
|
33
|
+
};
|
|
34
|
+
borderColor: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
borderWidth: {
|
|
39
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
layout: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
borderRadius: {
|
|
47
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
48
|
+
default: number;
|
|
49
|
+
};
|
|
50
|
+
startAngle: {
|
|
51
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
52
|
+
default: number;
|
|
53
|
+
};
|
|
54
|
+
endAngle: {
|
|
55
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
value: {
|
|
59
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
label: {
|
|
63
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
gap: {
|
|
67
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
68
|
+
default: number;
|
|
69
|
+
};
|
|
70
|
+
emphasisScale: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
emphasisScaleSize: {
|
|
75
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
76
|
+
default: number;
|
|
77
|
+
};
|
|
78
|
+
backgroundSizePercentage: {
|
|
79
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
82
|
+
backgroundPosition: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
87
|
+
"item-click": (_: any) => void;
|
|
88
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
89
|
+
data: {
|
|
90
|
+
type: ArrayConstructor;
|
|
91
|
+
default: () => any[];
|
|
92
|
+
};
|
|
93
|
+
size: {
|
|
94
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
95
|
+
default: number;
|
|
96
|
+
};
|
|
97
|
+
color: {
|
|
98
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
99
|
+
default: () => string[];
|
|
100
|
+
};
|
|
101
|
+
fontSize: {
|
|
102
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
103
|
+
default: number;
|
|
104
|
+
};
|
|
105
|
+
tipFontSize: {
|
|
106
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
107
|
+
default: number;
|
|
108
|
+
};
|
|
109
|
+
barSize: {
|
|
110
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
111
|
+
default: number;
|
|
112
|
+
};
|
|
113
|
+
borderColor: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
borderWidth: {
|
|
118
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
119
|
+
default: number;
|
|
120
|
+
};
|
|
121
|
+
layout: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
borderRadius: {
|
|
126
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
127
|
+
default: number;
|
|
128
|
+
};
|
|
129
|
+
startAngle: {
|
|
130
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
131
|
+
default: number;
|
|
132
|
+
};
|
|
133
|
+
endAngle: {
|
|
134
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
135
|
+
default: number;
|
|
136
|
+
};
|
|
137
|
+
value: {
|
|
138
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
139
|
+
default: string;
|
|
140
|
+
};
|
|
141
|
+
label: {
|
|
142
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
143
|
+
default: string;
|
|
144
|
+
};
|
|
145
|
+
gap: {
|
|
146
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
147
|
+
default: number;
|
|
148
|
+
};
|
|
149
|
+
emphasisScale: {
|
|
150
|
+
type: BooleanConstructor;
|
|
151
|
+
default: boolean;
|
|
152
|
+
};
|
|
153
|
+
emphasisScaleSize: {
|
|
154
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
155
|
+
default: number;
|
|
156
|
+
};
|
|
157
|
+
backgroundSizePercentage: {
|
|
158
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
159
|
+
default: number;
|
|
160
|
+
};
|
|
161
|
+
backgroundPosition: {
|
|
162
|
+
type: StringConstructor;
|
|
163
|
+
default: string;
|
|
164
|
+
};
|
|
165
|
+
}>> & Readonly<{
|
|
166
|
+
"onItem-click"?: (_: any) => any;
|
|
167
|
+
}>, {
|
|
168
|
+
value: string | number;
|
|
169
|
+
data: unknown[];
|
|
170
|
+
size: string | number;
|
|
171
|
+
color: string | unknown[];
|
|
172
|
+
label: string | number;
|
|
173
|
+
gap: string | number;
|
|
174
|
+
layout: string;
|
|
175
|
+
fontSize: string | number;
|
|
176
|
+
barSize: string | number;
|
|
177
|
+
borderColor: string;
|
|
178
|
+
borderRadius: string | number;
|
|
179
|
+
tipFontSize: string | number;
|
|
180
|
+
borderWidth: string | number;
|
|
181
|
+
startAngle: string | number;
|
|
182
|
+
endAngle: string | number;
|
|
183
|
+
emphasisScale: boolean;
|
|
184
|
+
emphasisScaleSize: string | number;
|
|
185
|
+
backgroundSizePercentage: string | number;
|
|
186
|
+
backgroundPosition: string;
|
|
187
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
188
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
189
|
+
export default _default;
|
|
190
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
191
|
+
new (): {
|
|
192
|
+
$slots: S;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as EchartsRadar } from './src/echarts-radar.vue';
|
|
2
|
+
import { SFCWithInstall } from '../../../utils/index.ts';
|
|
3
|
+
|
|
4
|
+
export declare const ToEchartsRadar: SFCWithInstall<typeof EchartsRadar>;
|
|
5
|
+
export default ToEchartsRadar;
|
|
6
|
+
export * from './src/instance';
|
|
7
|
+
export type { EchartsRadarInstance } from './src/instance';
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface RadarIndicator {
|
|
4
|
+
name: string;
|
|
5
|
+
max?: number;
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}
|
|
8
|
+
export interface RadarSeriesDatum {
|
|
9
|
+
name: string;
|
|
10
|
+
value: number[];
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}
|
|
13
|
+
export type RadarShape = 'polygon' | 'circle';
|
|
14
|
+
export interface RadarLabelConfig {
|
|
15
|
+
show?: boolean;
|
|
16
|
+
color?: string;
|
|
17
|
+
fontSize?: string | number;
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
}
|
|
20
|
+
export interface RadarAxisLineConfig {
|
|
21
|
+
show?: boolean;
|
|
22
|
+
color?: string;
|
|
23
|
+
width?: number;
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}
|
|
26
|
+
export interface RadarSplitLineConfig {
|
|
27
|
+
show?: boolean;
|
|
28
|
+
type?: string;
|
|
29
|
+
color?: string;
|
|
30
|
+
width?: number;
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}
|
|
33
|
+
export interface RadarSplitAreaConfig {
|
|
34
|
+
show?: boolean;
|
|
35
|
+
color?: string | string[];
|
|
36
|
+
opacity?: number;
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
}
|
|
39
|
+
export interface RadarNameConfig {
|
|
40
|
+
show?: boolean;
|
|
41
|
+
color?: string;
|
|
42
|
+
fontSize?: string | number;
|
|
43
|
+
gap?: number;
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
}
|
|
46
|
+
export interface RadarLegendConfig {
|
|
47
|
+
show?: boolean;
|
|
48
|
+
position?: string;
|
|
49
|
+
orient?: string;
|
|
50
|
+
icon?: string;
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
}
|
|
53
|
+
export interface RadarTooltipConfig {
|
|
54
|
+
show?: boolean;
|
|
55
|
+
showDefaultTooltip?: boolean;
|
|
56
|
+
textColor?: string;
|
|
57
|
+
bgColor?: string;
|
|
58
|
+
borderColor?: string;
|
|
59
|
+
fontSize?: string | number;
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
}
|
|
62
|
+
export interface EchartsRadarProps {
|
|
63
|
+
indicator?: RadarIndicator[];
|
|
64
|
+
data?: RadarSeriesDatum[];
|
|
65
|
+
color?: string | string[];
|
|
66
|
+
shape?: RadarShape;
|
|
67
|
+
radius?: string | number;
|
|
68
|
+
center?: [string | number, string | number];
|
|
69
|
+
splitNumber?: number;
|
|
70
|
+
axisLine?: RadarAxisLineConfig;
|
|
71
|
+
splitLine?: RadarSplitLineConfig;
|
|
72
|
+
splitArea?: RadarSplitAreaConfig;
|
|
73
|
+
name?: RadarNameConfig;
|
|
74
|
+
label?: RadarLabelConfig;
|
|
75
|
+
showSymbol?: boolean;
|
|
76
|
+
symbolSize?: number;
|
|
77
|
+
areaOpacity?: number;
|
|
78
|
+
lineWidth?: number;
|
|
79
|
+
showTooltip?: boolean;
|
|
80
|
+
tooltip?: RadarTooltipConfig;
|
|
81
|
+
legend?: RadarLegendConfig;
|
|
82
|
+
width?: string | number;
|
|
83
|
+
height?: string | number;
|
|
84
|
+
fontSize?: string | number;
|
|
85
|
+
mode?: string;
|
|
86
|
+
option?: Record<string, any>;
|
|
87
|
+
}
|
|
88
|
+
export declare const echartsRadarProps: {
|
|
89
|
+
indicator: {
|
|
90
|
+
type: PropType<RadarIndicator[]>;
|
|
91
|
+
default: () => any[];
|
|
92
|
+
};
|
|
93
|
+
data: {
|
|
94
|
+
type: PropType<RadarSeriesDatum[]>;
|
|
95
|
+
default: () => any[];
|
|
96
|
+
};
|
|
97
|
+
color: {
|
|
98
|
+
type: PropType<string | string[]>;
|
|
99
|
+
default: () => string[];
|
|
100
|
+
};
|
|
101
|
+
shape: {
|
|
102
|
+
type: PropType<RadarShape>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
radius: {
|
|
106
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
center: {
|
|
110
|
+
type: ArrayConstructor;
|
|
111
|
+
default: () => string[];
|
|
112
|
+
};
|
|
113
|
+
splitNumber: {
|
|
114
|
+
type: NumberConstructor;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
117
|
+
axisLine: {
|
|
118
|
+
type: PropType<RadarAxisLineConfig>;
|
|
119
|
+
default: () => {
|
|
120
|
+
show: boolean;
|
|
121
|
+
color: string;
|
|
122
|
+
width: number;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
splitLine: {
|
|
126
|
+
type: PropType<RadarSplitLineConfig>;
|
|
127
|
+
default: () => {
|
|
128
|
+
show: boolean;
|
|
129
|
+
type: string;
|
|
130
|
+
color: string;
|
|
131
|
+
width: number;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
splitArea: {
|
|
135
|
+
type: PropType<RadarSplitAreaConfig>;
|
|
136
|
+
default: () => {
|
|
137
|
+
show: boolean;
|
|
138
|
+
color: string[];
|
|
139
|
+
opacity: number;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
name: {
|
|
143
|
+
type: PropType<RadarNameConfig>;
|
|
144
|
+
default: () => {
|
|
145
|
+
show: boolean;
|
|
146
|
+
color: string;
|
|
147
|
+
fontSize: number;
|
|
148
|
+
gap: number;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
label: {
|
|
152
|
+
type: PropType<RadarLabelConfig>;
|
|
153
|
+
default: () => {
|
|
154
|
+
show: boolean;
|
|
155
|
+
color: string;
|
|
156
|
+
fontSize: number;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
showSymbol: {
|
|
160
|
+
type: BooleanConstructor;
|
|
161
|
+
default: boolean;
|
|
162
|
+
};
|
|
163
|
+
symbolSize: {
|
|
164
|
+
type: NumberConstructor;
|
|
165
|
+
default: number;
|
|
166
|
+
};
|
|
167
|
+
areaOpacity: {
|
|
168
|
+
type: NumberConstructor;
|
|
169
|
+
default: number;
|
|
170
|
+
};
|
|
171
|
+
lineWidth: {
|
|
172
|
+
type: NumberConstructor;
|
|
173
|
+
default: number;
|
|
174
|
+
};
|
|
175
|
+
showTooltip: {
|
|
176
|
+
type: BooleanConstructor;
|
|
177
|
+
default: boolean;
|
|
178
|
+
};
|
|
179
|
+
tooltip: {
|
|
180
|
+
type: PropType<RadarTooltipConfig>;
|
|
181
|
+
default: () => {
|
|
182
|
+
show: boolean;
|
|
183
|
+
showDefaultTooltip: boolean;
|
|
184
|
+
textColor: string;
|
|
185
|
+
bgColor: string;
|
|
186
|
+
borderColor: string;
|
|
187
|
+
fontSize: number;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
legend: {
|
|
191
|
+
type: PropType<RadarLegendConfig>;
|
|
192
|
+
default: () => {
|
|
193
|
+
show: boolean;
|
|
194
|
+
position: string;
|
|
195
|
+
orient: string;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
width: {
|
|
199
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
200
|
+
default: string;
|
|
201
|
+
};
|
|
202
|
+
height: {
|
|
203
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
204
|
+
default: number;
|
|
205
|
+
};
|
|
206
|
+
fontSize: {
|
|
207
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
208
|
+
default: number;
|
|
209
|
+
};
|
|
210
|
+
mode: {
|
|
211
|
+
type: StringConstructor;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
214
|
+
option: {
|
|
215
|
+
type: PropType<Record<string, any>>;
|
|
216
|
+
default: () => {};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
export declare const echartsRadarEmits: {
|
|
220
|
+
'item-click': (_: any) => boolean;
|
|
221
|
+
};
|